diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xepivot.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx index 444cc5aa1b4f..5878af86646d 100644 --- a/sc/source/filter/excel/xepivot.cxx +++ b/sc/source/filter/excel/xepivot.cxx @@ -1712,14 +1712,18 @@ void XclExpPivotTable::WriteQsiSxTag( XclExpStream& rStrm ) const rStrm << nRecordType << nDummyFlags << nTableType; // General flags + sal_uInt16 nFlags = 0x0001; +#if 0 + // for doc purpose + sal_uInt16 nFlags = 0x0000; bool bEnableRefresh = true; bool bPCacheInvalid = false; bool bOlapPTReport = false; - sal_uInt16 nFlags = 0x0000; if (bEnableRefresh) nFlags |= 0x0001; if (bPCacheInvalid) nFlags |= 0x0002; if (bOlapPTReport) nFlags |= 0x0004; +#endif rStrm << nFlags; // Feature-specific options. The value differs depending on the table |