summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-05-02 16:21:35 +0100
committerNoel Power <noel.power@suse.com>2013-05-03 08:56:16 +0000
commit0849bd9c5ef5ac885527cb98dafb9cea6200d8e5 (patch)
tree082a50af86b91111771bac7030820f91728d6085
parent2205ca85457639ee8833f1d11d7a66fd4a00bbd3 (diff)
fdo#64048 - fix calc/VBA clearcontents regression.
Change-Id: Id0c07507810ec1db41359f39dee804364fd37ecd Reviewed-on: https://gerrit.libreoffice.org/3744 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index abbe31e509d9..d8a42bf43f57 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -1636,7 +1636,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 );
}