diff options
-rw-r--r-- | sc/source/filter/inc/stylesbuffer.hxx | 47 | ||||
-rw-r--r-- | sc/source/filter/oox/stylesbuffer.cxx | 199 | ||||
-rwxr-xr-x | unusedcode.easy | 21 |
3 files changed, 0 insertions, 267 deletions
diff --git a/sc/source/filter/inc/stylesbuffer.hxx b/sc/source/filter/inc/stylesbuffer.hxx index 185ba98b732e..4facf0f2680e 100644 --- a/sc/source/filter/inc/stylesbuffer.hxx +++ b/sc/source/filter/inc/stylesbuffer.hxx @@ -278,8 +278,6 @@ public: /** Imports a font style flag from a DXF record. */ void importDxfFlag( sal_Int32 nElement, SequenceInputStream& rStrm ); - /** Imports the FONTCOLOR record from the passed stream. */ - void importFontColor( BiffInputStream& rStrm ); /** Sets the font attributes from the font block of a CFRULE record. */ void importCfRule( BiffInputStream& rStrm ); @@ -311,17 +309,6 @@ public: FontPropertyType ePropType ) const; private: - /** Reads and sets height and flags. */ - void importFontData2( BiffInputStream& rStrm ); - /** Reads and sets weight, escapement, underline, family, charset (BIFF5+). */ - void importFontData5( BiffInputStream& rStrm ); - - /** Reads and sets a byte string as font name. */ - void importFontName2( BiffInputStream& rStrm ); - /** Reads and sets a Unicode string as font name. */ - void importFontName8( BiffInputStream& rStrm ); - -private: FontModel maModel; ApiFontData maApiData; ApiFontUsedFlags maUsedFlags; @@ -390,16 +377,6 @@ public: /** Sets the alignment attributes from the passed BIFF12 XF record data. */ void setBiff12Data( sal_uInt32 nFlags ); - /** Sets the alignment attributes from the passed BIFF2 XF record data. */ - void setBiff2Data( sal_uInt8 nFlags ); - /** Sets the alignment attributes from the passed BIFF3 XF record data. */ - void setBiff3Data( sal_uInt16 nAlign ); - /** Sets the alignment attributes from the passed BIFF4 XF record data. */ - void setBiff4Data( sal_uInt16 nAlign ); - /** Sets the alignment attributes from the passed BIFF5 XF record data. */ - void setBiff5Data( sal_uInt16 nAlign ); - /** Sets the alignment attributes from the passed BIFF8 XF record data. */ - void setBiff8Data( sal_uInt16 nAlign, sal_uInt16 nMiscAttrib ); /** Final processing after import of all style settings. */ void finalizeImport(); @@ -460,10 +437,6 @@ public: /** Sets the protection attributes from the passed BIFF12 XF record data. */ void setBiff12Data( sal_uInt32 nFlags ); - /** Sets the protection attributes from the passed BIFF2 XF record data. */ - void setBiff2Data( sal_uInt8 nNumFmt ); - /** Sets the protection attributes from the passed BIFF3-BIFF8 XF record data. */ - void setBiff3Data( sal_uInt16 nProt ); /** Final processing after import of all style settings. */ void finalizeImport(); @@ -559,14 +532,6 @@ public: /** Imports a border from a DXF record from the passed stream. */ void importDxfBorder( sal_Int32 nElement, SequenceInputStream& rStrm ); - /** Sets the border attributes from the passed BIFF2 XF record data. */ - void setBiff2Data( sal_uInt8 nFlags ); - /** Sets the border attributes from the passed BIFF3/BIFF4 XF record data. */ - void setBiff3Data( sal_uInt32 nBorder ); - /** Sets the border attributes from the passed BIFF5 XF record data. */ - void setBiff5Data( sal_uInt32 nBorder, sal_uInt32 nArea ); - /** Sets the border attributes from the passed BIFF8 XF record data. */ - void setBiff8Data( sal_uInt32 nBorder1, sal_uInt32 nBorder2 ); /** Sets the border attributes from the border block of a CFRULE record. */ void importCfRule( BiffInputStream& rStrm, sal_uInt32 nFlags ); @@ -691,14 +656,6 @@ public: /** Imports gradient stop settings from a DXF record. */ void importDxfStop( SequenceInputStream& rStrm ); - /** Sets the fill attributes from the passed BIFF2 XF record data. */ - void setBiff2Data( sal_uInt8 nFlags ); - /** Sets the fill attributes from the passed BIFF3/BIFF4 XF record data. */ - void setBiff3Data( sal_uInt16 nArea ); - /** Sets the fill attributes from the passed BIFF5 XF record data. */ - void setBiff5Data( sal_uInt32 nArea ); - /** Sets the fill attributes from the passed BIFF8 XF record data. */ - void setBiff8Data( sal_uInt32 nBorder2, sal_uInt16 nArea ); /** Sets the fill attributes from the fill block of a CFRULE record. */ void importCfRule( BiffInputStream& rStrm, sal_uInt32 nFlags ); @@ -801,10 +758,6 @@ public: const ::ScPatternAttr& createPattern( bool bSkipPoolDefs = false ); private: - /** Sets 'attribute used' flags from the passed BIFF bit field. */ - void setBiffUsedFlags( sal_uInt8 nUsedFlags ); - -private: typedef ::std::auto_ptr< ::ScPatternAttr > ScPatternAttrPtr; ScPatternAttrPtr mpPattern; /// Calc item set. diff --git a/sc/source/filter/oox/stylesbuffer.cxx b/sc/source/filter/oox/stylesbuffer.cxx index 5b11f7a6d23b..7c3cb20d424c 100644 --- a/sc/source/filter/oox/stylesbuffer.cxx +++ b/sc/source/filter/oox/stylesbuffer.cxx @@ -886,12 +886,6 @@ void Font::importDxfFlag( sal_Int32 nElement, SequenceInputStream& rStrm ) } } -void Font::importFontColor( BiffInputStream& rStrm ) -{ - OSL_ENSURE( !mbDxf, "Font::importFontColor - unexpected conditional formatting flag" ); - maModel.maColor.importColorId( rStrm ); -} - void Font::importCfRule( BiffInputStream& rStrm ) { OSL_ENSURE( mbDxf, "Font::importCfRule - missing conditional formatting flag" ); @@ -1269,48 +1263,6 @@ void Font::writeToPropertySet( PropertySet& rPropSet, FontPropertyType ePropType rPropSet.setProperties( aPropMap ); } -void Font::importFontData2( BiffInputStream& rStrm ) -{ - sal_uInt16 nHeight, nFlags; - rStrm >> nHeight >> nFlags; - - maModel.setBiffHeight( nHeight ); - maModel.mnFamily = OOX_FONTFAMILY_NONE; - maModel.mnCharSet = -1; // ensure to not use font charset in byte string import - maModel.mnUnderline = getFlagValue( nFlags, BIFF_FONTFLAG_UNDERLINE, XML_single, XML_none ); - maModel.mnEscapement = XML_none; - maModel.mbBold = getFlag( nFlags, BIFF_FONTFLAG_BOLD ); - maModel.mbItalic = getFlag( nFlags, BIFF_FONTFLAG_ITALIC ); - maModel.mbStrikeout = getFlag( nFlags, BIFF_FONTFLAG_STRIKEOUT ); - maModel.mbOutline = getFlag( nFlags, BIFF_FONTFLAG_OUTLINE ); - maModel.mbShadow = getFlag( nFlags, BIFF_FONTFLAG_SHADOW ); -} - -void Font::importFontData5( BiffInputStream& rStrm ) -{ - sal_uInt16 nWeight, nEscapement; - sal_uInt8 nUnderline, nFamily, nCharSet; - rStrm >> nWeight >> nEscapement >> nUnderline >> nFamily >> nCharSet; - rStrm.skip( 1 ); - - maModel.setBiffWeight( nWeight ); - maModel.setBiffUnderline( nUnderline ); - maModel.setBiffEscapement( nEscapement ); - // equal constants in XML and BIFF for family and charset - maModel.mnFamily = nFamily; - maModel.mnCharSet = nCharSet; -} - -void Font::importFontName2( BiffInputStream& rStrm ) -{ - maModel.maName = rStrm.readByteStringUC( false, getTextEncoding() ); -} - -void Font::importFontName8( BiffInputStream& rStrm ) -{ - maModel.maName = rStrm.readUniStringBody( rStrm.readuInt8() ); -} - // ============================================================================ AlignmentModel::AlignmentModel() : @@ -1410,45 +1362,6 @@ void Alignment::setBiff12Data( sal_uInt32 nFlags ) maModel.mbJustLastLine = getFlag( nFlags, BIFF12_XF_JUSTLASTLINE ); } -void Alignment::setBiff2Data( sal_uInt8 nFlags ) -{ - maModel.setBiffHorAlign( extractValue< sal_uInt8 >( nFlags, 0, 3 ) ); -} - -void Alignment::setBiff3Data( sal_uInt16 nAlign ) -{ - maModel.setBiffHorAlign( extractValue< sal_uInt8 >( nAlign, 0, 3 ) ); - maModel.mbWrapText = getFlag( nAlign, BIFF_XF_WRAPTEXT ); // new in BIFF3 -} - -void Alignment::setBiff4Data( sal_uInt16 nAlign ) -{ - maModel.setBiffHorAlign( extractValue< sal_uInt8 >( nAlign, 0, 3 ) ); - maModel.setBiffVerAlign( extractValue< sal_uInt8 >( nAlign, 4, 2 ) ); // new in BIFF4 - maModel.setBiffTextOrient( extractValue< sal_uInt8 >( nAlign, 6, 2 ) ); // new in BIFF4 - maModel.mbWrapText = getFlag( nAlign, BIFF_XF_WRAPTEXT ); -} - -void Alignment::setBiff5Data( sal_uInt16 nAlign ) -{ - maModel.setBiffHorAlign( extractValue< sal_uInt8 >( nAlign, 0, 3 ) ); - maModel.setBiffVerAlign( extractValue< sal_uInt8 >( nAlign, 4, 3 ) ); - maModel.setBiffTextOrient( extractValue< sal_uInt8 >( nAlign, 8, 2 ) ); - maModel.mbWrapText = getFlag( nAlign, BIFF_XF_WRAPTEXT ); -} - -void Alignment::setBiff8Data( sal_uInt16 nAlign, sal_uInt16 nMiscAttrib ) -{ - maModel.setBiffHorAlign( extractValue< sal_uInt8 >( nAlign, 0, 3 ) ); - maModel.setBiffVerAlign( extractValue< sal_uInt8 >( nAlign, 4, 3 ) ); - maModel.mnTextDir = extractValue< sal_Int32 >( nMiscAttrib, 6, 2 ); // new in BIFF8 - maModel.mnRotation = extractValue< sal_Int32 >( nAlign, 8, 8 ); // new in BIFF8 - maModel.mnIndent = extractValue< sal_uInt8 >( nMiscAttrib, 0, 4 ); // new in BIFF8 - maModel.mbWrapText = getFlag( nAlign, BIFF_XF_WRAPTEXT ); - maModel.mbShrink = getFlag( nMiscAttrib, BIFF_XF_SHRINK ); // new in BIFF8 - maModel.mbJustLastLine = getFlag( nAlign, BIFF_XF_JUSTLASTLINE ); // new in BIFF8(?) -} - void Alignment::finalizeImport() { namespace csstab = ::com::sun::star::table; @@ -1675,18 +1588,6 @@ void Protection::setBiff12Data( sal_uInt32 nFlags ) maModel.mbHidden = getFlag( nFlags, BIFF12_XF_HIDDEN ); } -void Protection::setBiff2Data( sal_uInt8 nNumFmt ) -{ - maModel.mbLocked = getFlag( nNumFmt, BIFF2_XF_LOCKED ); - maModel.mbHidden = getFlag( nNumFmt, BIFF2_XF_HIDDEN ); -} - -void Protection::setBiff3Data( sal_uInt16 nProt ) -{ - maModel.mbLocked = getFlag( nProt, BIFF_XF_LOCKED ); - maModel.mbHidden = getFlag( nProt, BIFF_XF_HIDDEN ); -} - void Protection::finalizeImport() { maApiData.maCellProt.IsLocked = maModel.mbLocked; @@ -1866,49 +1767,6 @@ void Border::importDxfBorder( sal_Int32 nElement, SequenceInputStream& rStrm ) } } -void Border::setBiff2Data( sal_uInt8 nFlags ) -{ - OSL_ENSURE( !mbDxf, "Border::setBiff2Data - unexpected conditional formatting flag" ); - maModel.maLeft.setBiffData( getFlagValue( nFlags, BIFF2_XF_LEFTLINE, BIFF_LINE_THIN, BIFF_LINE_NONE ), BIFF2_COLOR_BLACK ); - maModel.maRight.setBiffData( getFlagValue( nFlags, BIFF2_XF_RIGHTLINE, BIFF_LINE_THIN, BIFF_LINE_NONE ), BIFF2_COLOR_BLACK ); - maModel.maTop.setBiffData( getFlagValue( nFlags, BIFF2_XF_TOPLINE, BIFF_LINE_THIN, BIFF_LINE_NONE ), BIFF2_COLOR_BLACK ); - maModel.maBottom.setBiffData( getFlagValue( nFlags, BIFF2_XF_BOTTOMLINE, BIFF_LINE_THIN, BIFF_LINE_NONE ), BIFF2_COLOR_BLACK ); - maModel.maDiagonal.mbUsed = false; -} - -void Border::setBiff3Data( sal_uInt32 nBorder ) -{ - OSL_ENSURE( !mbDxf, "Border::setBiff3Data - unexpected conditional formatting flag" ); - maModel.maLeft.setBiffData( extractValue< sal_uInt8 >( nBorder, 8, 3 ), extractValue< sal_uInt16 >( nBorder, 11, 5 ) ); - maModel.maRight.setBiffData( extractValue< sal_uInt8 >( nBorder, 24, 3 ), extractValue< sal_uInt16 >( nBorder, 27, 5 ) ); - maModel.maTop.setBiffData( extractValue< sal_uInt8 >( nBorder, 0, 3 ), extractValue< sal_uInt16 >( nBorder, 3, 5 ) ); - maModel.maBottom.setBiffData( extractValue< sal_uInt8 >( nBorder, 16, 3 ), extractValue< sal_uInt16 >( nBorder, 19, 5 ) ); - maModel.maDiagonal.mbUsed = false; -} - -void Border::setBiff5Data( sal_uInt32 nBorder, sal_uInt32 nArea ) -{ - OSL_ENSURE( !mbDxf, "Border::setBiff5Data - unexpected conditional formatting flag" ); - maModel.maLeft.setBiffData( extractValue< sal_uInt8 >( nBorder, 3, 3 ), extractValue< sal_uInt16 >( nBorder, 16, 7 ) ); - maModel.maRight.setBiffData( extractValue< sal_uInt8 >( nBorder, 6, 3 ), extractValue< sal_uInt16 >( nBorder, 23, 7 ) ); - maModel.maTop.setBiffData( extractValue< sal_uInt8 >( nBorder, 0, 3 ), extractValue< sal_uInt16 >( nBorder, 9, 7 ) ); - maModel.maBottom.setBiffData( extractValue< sal_uInt8 >( nArea, 22, 3 ), extractValue< sal_uInt16 >( nArea, 25, 7 ) ); - maModel.maDiagonal.mbUsed = false; -} - -void Border::setBiff8Data( sal_uInt32 nBorder1, sal_uInt32 nBorder2 ) -{ - OSL_ENSURE( !mbDxf, "Border::setBiff8Data - unexpected conditional formatting flag" ); - maModel.maLeft.setBiffData( extractValue< sal_uInt8 >( nBorder1, 0, 4 ), extractValue< sal_uInt16 >( nBorder1, 16, 7 ) ); - maModel.maRight.setBiffData( extractValue< sal_uInt8 >( nBorder1, 4, 4 ), extractValue< sal_uInt16 >( nBorder1, 23, 7 ) ); - maModel.maTop.setBiffData( extractValue< sal_uInt8 >( nBorder1, 8, 4 ), extractValue< sal_uInt16 >( nBorder2, 0, 7 ) ); - maModel.maBottom.setBiffData( extractValue< sal_uInt8 >( nBorder1, 12, 4 ), extractValue< sal_uInt16 >( nBorder2, 7, 7 ) ); - maModel.mbDiagTLtoBR = getFlag( nBorder1, BIFF_XF_DIAG_TLBR ); - maModel.mbDiagBLtoTR = getFlag( nBorder1, BIFF_XF_DIAG_BLTR ); - if( maModel.mbDiagTLtoBR || maModel.mbDiagBLtoTR ) - maModel.maDiagonal.setBiffData( extractValue< sal_uInt8 >( nBorder2, 21, 4 ), extractValue< sal_uInt16 >( nBorder2, 14, 7 ) ); -} - void Border::importCfRule( BiffInputStream& rStrm, sal_uInt32 nFlags ) { OSL_ENSURE( mbDxf, "Border::importCfRule - missing conditional formatting flag" ); @@ -2290,46 +2148,6 @@ void Fill::importDxfStop( SequenceInputStream& rStrm ) mxGradientModel->readGradientStop( rStrm, true ); } -void Fill::setBiff2Data( sal_uInt8 nFlags ) -{ - OSL_ENSURE( !mbDxf, "Fill::setBiff2Data - unexpected conditional formatting flag" ); - mxPatternModel.reset( new PatternFillModel( mbDxf ) ); - mxPatternModel->setBiffData( - BIFF2_COLOR_BLACK, - BIFF2_COLOR_WHITE, - getFlagValue( nFlags, BIFF2_XF_BACKGROUND, BIFF_PATT_125, BIFF_PATT_NONE ) ); -} - -void Fill::setBiff3Data( sal_uInt16 nArea ) -{ - OSL_ENSURE( !mbDxf, "Fill::setBiff3Data - unexpected conditional formatting flag" ); - mxPatternModel.reset( new PatternFillModel( mbDxf ) ); - mxPatternModel->setBiffData( - extractValue< sal_uInt16 >( nArea, 6, 5 ), - extractValue< sal_uInt16 >( nArea, 11, 5 ), - extractValue< sal_uInt8 >( nArea, 0, 6 ) ); -} - -void Fill::setBiff5Data( sal_uInt32 nArea ) -{ - OSL_ENSURE( !mbDxf, "Fill::setBiff5Data - unexpected conditional formatting flag" ); - mxPatternModel.reset( new PatternFillModel( mbDxf ) ); - mxPatternModel->setBiffData( - extractValue< sal_uInt16 >( nArea, 0, 7 ), - extractValue< sal_uInt16 >( nArea, 7, 7 ), - extractValue< sal_uInt8 >( nArea, 16, 6 ) ); -} - -void Fill::setBiff8Data( sal_uInt32 nBorder2, sal_uInt16 nArea ) -{ - OSL_ENSURE( !mbDxf, "Fill::setBiff8Data - unexpected conditional formatting flag" ); - mxPatternModel.reset( new PatternFillModel( mbDxf ) ); - mxPatternModel->setBiffData( - extractValue< sal_uInt16 >( nArea, 0, 7 ), - extractValue< sal_uInt16 >( nArea, 7, 7 ), - extractValue< sal_uInt8 >( nBorder2, 26, 6 ) ); -} - void Fill::importCfRule( BiffInputStream& rStrm, sal_uInt32 nFlags ) { OSL_ENSURE( mbDxf, "Fill::importCfRule - missing conditional formatting flag" ); @@ -2627,23 +2445,6 @@ void Xf::writeToPropertySet( PropertySet& rPropSet ) const rPropSet.setProperties( aPropMap ); } -void Xf::setBiffUsedFlags( sal_uInt8 nUsedFlags ) -{ - /* Notes about finding the used flags: - - In cell XFs a *set* bit means a used attribute. - - In style XFs a *cleared* bit means a used attribute. - The boolean flags always store true, if the attribute is used. - The "isCellXf() == getFlag(...)" construct evaluates to true in both - mentioned cases: cell XF and set bit; or style XF and cleared bit. - */ - maModel.mbFontUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_FONT_USED ); - maModel.mbNumFmtUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_NUMFMT_USED ); - maModel.mbAlignUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_ALIGN_USED ); - maModel.mbProtUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_PROT_USED ); - maModel.mbBorderUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_BORDER_USED ); - maModel.mbAreaUsed = isCellXf() == getFlag( nUsedFlags, BIFF_XF_AREA_USED ); -} - const ::ScPatternAttr& Xf::createPattern( bool bSkipPoolDefs ) { diff --git a/unusedcode.easy b/unusedcode.easy index 91e77f2ef201..d9aa4962640a 100755 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -758,11 +758,6 @@ nullcanvas::SpriteCanvasHelper::genericUpdate(basegfx::B2DConnectedRanges<canvas nullcanvas::SpriteCanvasHelper::opaqueUpdate(basegfx::B2DConnectedRanges<canvas::SpriteRedrawManager::SpriteInfo>::ConnectedComponents const&) nullcanvas::SpriteCanvasHelper::scrollUpdate(basegfx::B2DRange const&, basegfx::B2DRange const&, basegfx::B2DConnectedRanges<canvas::SpriteRedrawManager::SpriteInfo>::ConnectedComponents const&) oox::PropertyMap::dump(com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet>) -oox::xls::Alignment::setBiff2Data(unsigned char) -oox::xls::Alignment::setBiff3Data(unsigned short) -oox::xls::Alignment::setBiff4Data(unsigned short) -oox::xls::Alignment::setBiff5Data(unsigned short) -oox::xls::Alignment::setBiff8Data(unsigned short, unsigned short) oox::xls::BiffDecoder_RCF::BiffDecoder_RCF(unsigned char*, unsigned char*, unsigned char*) oox::xls::BiffDecoder_XOR::BiffDecoder_XOR(unsigned short, unsigned short) oox::xls::BiffDrawingObjectBase::importObjBiff3(oox::xls::WorksheetHelper const&, oox::xls::BiffInputStream&) @@ -770,10 +765,6 @@ oox::xls::BiffDrawingObjectBase::importObjBiff4(oox::xls::WorksheetHelper const& oox::xls::BiffDrawingObjectBase::importObjBiff5(oox::xls::WorksheetHelper const&, oox::xls::BiffInputStream&) oox::xls::BiffHelper::calcTextEncodingFromCodePage(unsigned short) oox::xls::BiffWorkbookContextBase::BiffWorkbookContextBase(oox::xls::WorkbookHelper const&) -oox::xls::Border::setBiff2Data(unsigned char) -oox::xls::Border::setBiff3Data(unsigned int) -oox::xls::Border::setBiff5Data(unsigned int, unsigned int) -oox::xls::Border::setBiff8Data(unsigned int, unsigned int) oox::xls::CellBlock::CellBlock(oox::xls::WorksheetHelper const&, oox::ValueRange const&, int) oox::xls::CellStyleBuffer::importStyle(oox::xls::BiffInputStream&) oox::xls::Comment::importNoteBiff2(oox::xls::BiffInputStream&) @@ -786,16 +777,7 @@ oox::xls::ExternalLink::importExternalName(oox::xls::BiffInputStream&) oox::xls::ExternalLinkBuffer::importExternSheet(oox::xls::BiffInputStream&) oox::xls::ExternalLinkBuffer::importExternSheet8(oox::xls::BiffInputStream&) oox::xls::ExternalLinkBuffer::importExternalBook(oox::xls::BiffInputStream&) -oox::xls::Fill::setBiff2Data(unsigned char) -oox::xls::Fill::setBiff3Data(unsigned short) -oox::xls::Fill::setBiff5Data(unsigned int) -oox::xls::Fill::setBiff8Data(unsigned int, unsigned short) oox::xls::FilterColumn::importFilterColumn(oox::xls::BiffInputStream&) -oox::xls::Font::importFontColor(oox::xls::BiffInputStream&) -oox::xls::Font::importFontData2(oox::xls::BiffInputStream&) -oox::xls::Font::importFontData5(oox::xls::BiffInputStream&) -oox::xls::Font::importFontName2(oox::xls::BiffInputStream&) -oox::xls::Font::importFontName8(oox::xls::BiffInputStream&) oox::xls::PivotCache::importDConName(oox::xls::BiffInputStream&) oox::xls::PivotCache::importDConRef(oox::xls::BiffInputStream&) oox::xls::PivotTable::importPTDataField(oox::xls::BiffInputStream&) @@ -804,8 +786,6 @@ oox::xls::PivotTable::importPTDefinition2(oox::xls::BiffInputStream&) oox::xls::PivotTable::importPTPageFields(oox::xls::BiffInputStream&) oox::xls::PivotTable::importPTRowColFields(oox::xls::BiffInputStream&) oox::xls::PivotTableField::importPTField(oox::xls::BiffInputStream&) -oox::xls::Protection::setBiff2Data(unsigned char) -oox::xls::Protection::setBiff3Data(unsigned short) oox::xls::QueryTable::importQueryTable(oox::xls::BiffInputStream&) oox::xls::QueryTable::importQueryTableRefresh(oox::xls::BiffInputStream&) oox::xls::QueryTable::importQueryTableSettings(oox::xls::BiffInputStream&) @@ -813,7 +793,6 @@ oox::xls::RichString::importByteString(oox::xls::BiffInputStream&, unsigned shor oox::xls::RichString::importUniString(oox::xls::BiffInputStream&, int) oox::xls::Scenario::importScenario(oox::xls::BiffInputStream&) oox::xls::Xf::setAllUsedFlags(bool) -oox::xls::Xf::setBiffUsedFlags(unsigned char) psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&) psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&) psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&) |