summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-05-02 16:21:35 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-05-02 16:23:28 +0100
commitb701650c9257e82e8e5ec46451653b661aa65d28 (patch)
treeb80c142d72100a4f0acc564f594ffebcf7da8c9c /sc
parent263ab3f14bbb8cea9f5a1b8ea7496f6a23e6c547 (diff)
fdo#64048 - fix calc/VBA clearcontents regression.
Change-Id: Id0c07507810ec1db41359f39dee804364fd37ecd
Diffstat (limited to 'sc')
-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 85305e52904f..5bc7e65e47c2 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 );
}