[Libreoffice-commits] core.git: sc/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 21 10:32:25 UTC 2020


 sc/source/filter/oox/pivotcachebuffer.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 16c4cdd988ea8a5d5dfaa3c24e532a6f75ccb181
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Thu Aug 20 13:14:09 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri Aug 21 12:31:46 2020 +0200

    Fix typo in code
    
    Change-Id: I4be3bce06e24fd10fef669e969788336bd2a1df6
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101115
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/sc/source/filter/oox/pivotcachebuffer.cxx b/sc/source/filter/oox/pivotcachebuffer.cxx
index cd72bb418b83..a6d9302cfbdd 100644
--- a/sc/source/filter/oox/pivotcachebuffer.cxx
+++ b/sc/source/filter/oox/pivotcachebuffer.cxx
@@ -93,7 +93,7 @@ const sal_uInt8 BIFF12_PCDEFINITION_OPTIMIZEMEMORY  = 0x08;
 const sal_uInt8 BIFF12_PCDEFINITION_ENABLEREFRESH   = 0x10;
 const sal_uInt8 BIFF12_PCDEFINITION_BACKGROUNDQUERY = 0x20;
 const sal_uInt8 BIFF12_PCDEFINITION_UPGRADEONREFR   = 0x40;
-const sal_uInt8 BIFF12_PCDEFINITION_TUPELCACHE      = 0x80;
+const sal_uInt8 BIFF12_PCDEFINITION_TUPLECACHE      = 0x80;
 
 const sal_uInt8 BIFF12_PCDEFINITION_HASUSERNAME     = 0x01;
 const sal_uInt8 BIFF12_PCDEFINITION_HASRELID        = 0x02;
@@ -935,7 +935,7 @@ void PivotCache::importPCDefinition( SequenceInputStream& rStrm )
     maDefModel.mbEnableRefresh    = getFlag( nFlags1, BIFF12_PCDEFINITION_ENABLEREFRESH );
     maDefModel.mbBackgroundQuery  = getFlag( nFlags1, BIFF12_PCDEFINITION_BACKGROUNDQUERY );
     maDefModel.mbUpgradeOnRefresh = getFlag( nFlags1, BIFF12_PCDEFINITION_UPGRADEONREFR );
-    maDefModel.mbTupleCache       = getFlag( nFlags1, BIFF12_PCDEFINITION_TUPELCACHE );
+    maDefModel.mbTupleCache       = getFlag( nFlags1, BIFF12_PCDEFINITION_TUPLECACHE );
     maDefModel.mbSupportSubquery  = getFlag( nFlags2, BIFF12_PCDEFINITION_SUPPORTSUBQUERY );
     maDefModel.mbSupportDrill     = getFlag( nFlags2, BIFF12_PCDEFINITION_SUPPORTDRILL );
 }


More information about the Libreoffice-commits mailing list