Kaydet (Commit) 691f0b3c authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#704262 coverity#704263 Dead code

Change-Id: I3f015ea89a9a542226d18d0d203eb493f08b46a0
üst 69ea62a0
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment