[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - sc/source

Michael Meeks michael.meeks at suse.com
Fri May 3 01:56:34 PDT 2013


 sc/source/ui/vba/vbarange.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0849bd9c5ef5ac885527cb98dafb9cea6200d8e5
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
    Reviewed-on: https://gerrit.libreoffice.org/3744
    Reviewed-by: Noel Power <noel.power at suse.com>
    Tested-by: Noel Power <noel.power at suse.com>

diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index abbe31e..d8a42bf 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 );
 }
 


More information about the Libreoffice-commits mailing list