diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/inc/SchXMLExport.hxx | 2 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp_impl.hxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.hxx | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/inc/SchXMLExport.hxx b/xmloff/inc/SchXMLExport.hxx index db4b0046f511..194e061a60e9 100644 --- a/xmloff/inc/SchXMLExport.hxx +++ b/xmloff/inc/SchXMLExport.hxx @@ -45,7 +45,7 @@ private: protected: virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass = ::xmloff::token::XML_TOKEN_INVALID ); - virtual void _ExportStyles( sal_Bool bUsed ); + virtual void _ExportStyles( bool bUsed ); virtual void _ExportAutoStyles(); virtual void _ExportMasterStyles(); virtual void _ExportContent(); diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index f350d6ef6524..3495f4be52d8 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -3543,7 +3543,7 @@ sal_uInt32 SchXMLExport::exportDoc( enum ::xmloff::token::XMLTokenEnum eClass ) return SvXMLExport::exportDoc( eClass ); } -void SchXMLExport::_ExportStyles( sal_Bool bUsed ) +void SchXMLExport::_ExportStyles( bool bUsed ) { SvXMLExport::_ExportStyles( bUsed ); } diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 28e9af270bc2..eaf3d8ec6013 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -1171,7 +1171,7 @@ void SvXMLExport::ImplExportStyles( sal_Bool ) SvXMLElementExport aElem( *this, XML_NAMESPACE_OFFICE, XML_STYLES, sal_True, sal_True ); - _ExportStyles( sal_False ); + _ExportStyles( false ); } // transfer style names (+ families) TO other components (if appropriate) @@ -1579,7 +1579,7 @@ void SvXMLExport::_ExportFontDecls() mxFontAutoStylePool->exportXML(); } -void SvXMLExport::_ExportStyles( sal_Bool ) +void SvXMLExport::_ExportStyles( bool ) { uno::Reference< lang::XMultiServiceFactory > xFact( GetModel(), uno::UNO_QUERY ); if( xFact.is()) diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index 7a5edd57b327..5a939245d767 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -2136,7 +2136,7 @@ void SdXMLExport::exportPresentationSettings() } } -void SdXMLExport::_ExportStyles(sal_Bool bUsed) +void SdXMLExport::_ExportStyles(bool bUsed) { GetPropertySetMapper()->SetAutoStyles( sal_False ); diff --git a/xmloff/source/draw/sdxmlexp_impl.hxx b/xmloff/source/draw/sdxmlexp_impl.hxx index 0e0ee73bed18..aea83fce3894 100644 --- a/xmloff/source/draw/sdxmlexp_impl.hxx +++ b/xmloff/source/draw/sdxmlexp_impl.hxx @@ -125,7 +125,7 @@ class SdXMLExport : public SvXMLExport const OUString msEndShape; const OUString msPageLayoutNames; - virtual void _ExportStyles(sal_Bool bUsed); + virtual void _ExportStyles(bool bUsed); virtual void _ExportAutoStyles(); virtual void _ExportFontDecls(); virtual void _ExportMasterStyles(); diff --git a/xmloff/source/text/XMLAutoTextEventExport.cxx b/xmloff/source/text/XMLAutoTextEventExport.cxx index fe0b57f7cf37..495be2117dc7 100644 --- a/xmloff/source/text/XMLAutoTextEventExport.cxx +++ b/xmloff/source/text/XMLAutoTextEventExport.cxx @@ -202,7 +202,7 @@ void XMLAutoTextEventExport::exportEvents() void XMLAutoTextEventExport::_ExportMeta() {} void XMLAutoTextEventExport::_ExportScripts() {} void XMLAutoTextEventExport::_ExportFontDecls() {} -void XMLAutoTextEventExport::_ExportStyles( sal_Bool ) {} +void XMLAutoTextEventExport::_ExportStyles( bool ) {} void XMLAutoTextEventExport::_ExportAutoStyles() {} void XMLAutoTextEventExport::_ExportMasterStyles() {} void XMLAutoTextEventExport::_ExportContent() {} diff --git a/xmloff/source/text/XMLAutoTextEventExport.hxx b/xmloff/source/text/XMLAutoTextEventExport.hxx index 85f23ef3297a..5c2ca5e7c004 100644 --- a/xmloff/source/text/XMLAutoTextEventExport.hxx +++ b/xmloff/source/text/XMLAutoTextEventExport.hxx @@ -91,7 +91,7 @@ protected: virtual void _ExportMeta(); virtual void _ExportScripts(); virtual void _ExportFontDecls(); - virtual void _ExportStyles( sal_Bool bUsed ) ; + virtual void _ExportStyles( bool bUsed ) ; virtual void _ExportAutoStyles(); virtual void _ExportMasterStyles(); virtual void _ExportContent(); |