[Libreoffice-commits] core.git: sc/source
Michael Meeks
michael.meeks at suse.com
Thu May 2 08:24:11 PDT 2013
sc/source/ui/vba/vbarange.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b701650c9257e82e8e5ec46451653b661aa65d28
Author: Michael Meeks <michael.meeks at suse.com>
Date: Thu May 2 16:21:35 2013 +0100
fdo#64048 - fix calc/VBA clearcontents regression.
Change-Id: Id0c07507810ec1db41359f39dee804364fd37ecd
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 85305e5..5bc7e65 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -1635,7 +1635,7 @@ void SAL_CALL
ScVbaRange::ClearContents() throw (uno::RuntimeException)
{
using namespace ::com::sun::star::sheet::CellFlags;
- sal_Int32 nFlags = VALUE | DATETIME | STRING | FORMULA | HARDATTR | EDITATTR | FORMATTED;
+ sal_Int32 nFlags = VALUE | DATETIME | STRING | FORMULA;
ClearContents( nFlags, true );
}
More information about the Libreoffice-commits
mailing list