summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-13 13:21:54 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:15 +0200
commitf44024d1a065005bcbc991525df059cd86bc2363 (patch)
treeb17ab7d50231bbb4a1616b502c3b5d82237fce95
parent982df8a29a753fe32512120472fd482b81d2f11c (diff)
sal_Bool->bool
Change-Id: Iadc9f9ef444fe36d58304c2d6219021173385118
-rw-r--r--dbaccess/source/filter/xml/xmlExport.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlExport.hxx2
-rw-r--r--filter/source/svg/svgfilter.hxx2
-rw-r--r--include/xmloff/xmlexp.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlExport.cxx2
-rw-r--r--reportdesign/source/filter/xml/xmlExport.hxx2
-rw-r--r--sc/source/filter/xml/xmlexprt.cxx2
-rw-r--r--sc/source/filter/xml/xmlexprt.hxx2
-rw-r--r--sw/source/filter/xml/xmlexp.hxx2
-rw-r--r--sw/source/filter/xml/xmlfmte.cxx2
-rw-r--r--xmloff/inc/SchXMLExport.hxx2
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx2
-rw-r--r--xmloff/source/core/xmlexp.cxx4
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx2
-rw-r--r--xmloff/source/draw/sdxmlexp_impl.hxx2
-rw-r--r--xmloff/source/text/XMLAutoTextEventExport.cxx2
-rw-r--r--xmloff/source/text/XMLAutoTextEventExport.hxx2
17 files changed, 18 insertions, 18 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx
index 9ac4b0b664d3..866436ed21ef 100644
--- a/dbaccess/source/filter/xml/xmlExport.cxx
+++ b/dbaccess/source/filter/xml/xmlExport.cxx
@@ -1295,7 +1295,7 @@ void ODBExport::_ExportAutoStyles()
}
}
-void ODBExport::_ExportStyles(sal_Bool bUsed)
+void ODBExport::_ExportStyles(bool bUsed)
{
SvXMLExport::_ExportStyles(bUsed);
}
diff --git a/dbaccess/source/filter/xml/xmlExport.hxx b/dbaccess/source/filter/xml/xmlExport.hxx
index 2365f4010c0f..59062050c60d 100644
--- a/dbaccess/source/filter/xml/xmlExport.hxx
+++ b/dbaccess/source/filter/xml/xmlExport.hxx
@@ -159,7 +159,7 @@ private:
ODBExport();
protected:
- virtual void _ExportStyles( sal_Bool bUsed );
+ virtual void _ExportStyles( bool bUsed );
virtual void _ExportAutoStyles();
virtual void _ExportContent();
virtual void _ExportMasterStyles();
diff --git a/filter/source/svg/svgfilter.hxx b/filter/source/svg/svgfilter.hxx
index 85fab2b4c63a..9c5a0587c343 100644
--- a/filter/source/svg/svgfilter.hxx
+++ b/filter/source/svg/svgfilter.hxx
@@ -129,7 +129,7 @@ public:
protected:
- virtual void _ExportStyles( sal_Bool /* bUsed */ ) {}
+ virtual void _ExportStyles( bool /* bUsed */ ) {}
virtual void _ExportAutoStyles() {}
virtual void _ExportContent() {}
virtual void _ExportMasterStyles() {}
diff --git a/include/xmloff/xmlexp.hxx b/include/xmloff/xmlexp.hxx
index 2e77c5c00c06..d99db106b9aa 100644
--- a/include/xmloff/xmlexp.hxx
+++ b/include/xmloff/xmlexp.hxx
@@ -197,7 +197,7 @@ protected:
// This method should be overloaded to export the content of <style:styles>.
// If bUsed is set, used styles should be exported only.
// Overloaded Methods must call this method !
- virtual void _ExportStyles( sal_Bool bUsed ) ;
+ virtual void _ExportStyles( bool bUsed );
// This method must be overloaded to export the contents of
// <style:auto-styles>
diff --git a/reportdesign/source/filter/xml/xmlExport.cxx b/reportdesign/source/filter/xml/xmlExport.cxx
index a17128569b41..692bca00db75 100644
--- a/reportdesign/source/filter/xml/xmlExport.cxx
+++ b/reportdesign/source/filter/xml/xmlExport.cxx
@@ -1361,7 +1361,7 @@ void ORptExport::_ExportAutoStyles()
GetPageExport()->exportAutoStyles();
}
// -----------------------------------------------------------------------------
-void ORptExport::_ExportStyles(sal_Bool bUsed)
+void ORptExport::_ExportStyles(bool bUsed)
{
SvXMLExport::_ExportStyles(bUsed);
diff --git a/reportdesign/source/filter/xml/xmlExport.hxx b/reportdesign/source/filter/xml/xmlExport.hxx
index 8334c7ac58f0..d919131cfcc1 100644
--- a/reportdesign/source/filter/xml/xmlExport.hxx
+++ b/reportdesign/source/filter/xml/xmlExport.hxx
@@ -172,7 +172,7 @@ private:
virtual void SetBodyAttributes();
protected:
- virtual void _ExportStyles( sal_Bool bUsed );
+ virtual void _ExportStyles( bool bUsed );
virtual void _ExportAutoStyles();
virtual void _ExportContent();
virtual void _ExportMasterStyles();
diff --git a/sc/source/filter/xml/xmlexprt.cxx b/sc/source/filter/xml/xmlexprt.cxx
index b5ec4c9c945d..211883fd22aa 100644
--- a/sc/source/filter/xml/xmlexprt.cxx
+++ b/sc/source/filter/xml/xmlexprt.cxx
@@ -1958,7 +1958,7 @@ void ScXMLExport::_ExportContent()
GetProgressBarHelper()->SetValue(GetProgressBarHelper()->GetReference());
}
-void ScXMLExport::_ExportStyles( sal_Bool bUsed )
+void ScXMLExport::_ExportStyles( bool bUsed )
{
if (!pSharedData)
{
diff --git a/sc/source/filter/xml/xmlexprt.hxx b/sc/source/filter/xml/xmlexprt.hxx
index 3364f5bf42ee..b4b26816aa26 100644
--- a/sc/source/filter/xml/xmlexprt.hxx
+++ b/sc/source/filter/xml/xmlexprt.hxx
@@ -132,7 +132,7 @@ class ScXMLExport : public SvXMLExport
void WriteTablesView(const com::sun::star::uno::Any& aTableView);
void WriteView(const com::sun::star::uno::Any& aView);
virtual void _ExportFontDecls();
- virtual void _ExportStyles( sal_Bool bUsed );
+ virtual void _ExportStyles( bool bUsed );
virtual void _ExportAutoStyles();
virtual void _ExportMasterStyles();
virtual void SetBodyAttributes();
diff --git a/sw/source/filter/xml/xmlexp.hxx b/sw/source/filter/xml/xmlexp.hxx
index 335643bb2e58..07f6e158b2bc 100644
--- a/sw/source/filter/xml/xmlexp.hxx
+++ b/sw/source/filter/xml/xmlexp.hxx
@@ -91,7 +91,7 @@ class SwXMLExport : public SvXMLExport
virtual void _ExportMeta();
virtual void _ExportFontDecls();
- virtual void _ExportStyles( sal_Bool bUsed );
+ virtual void _ExportStyles( bool bUsed );
virtual void _ExportAutoStyles();
virtual void _ExportMasterStyles();
virtual void SetBodyAttributes();
diff --git a/sw/source/filter/xml/xmlfmte.cxx b/sw/source/filter/xml/xmlfmte.cxx
index 978092273313..acb473026842 100644
--- a/sw/source/filter/xml/xmlfmte.cxx
+++ b/sw/source/filter/xml/xmlfmte.cxx
@@ -163,7 +163,7 @@ void SwXMLExport::ExportFmt( const SwFmt& rFmt, enum XMLTokenEnum eFamily )
}
-void SwXMLExport::_ExportStyles( sal_Bool bUsed )
+void SwXMLExport::_ExportStyles( bool bUsed )
{
SvXMLExport::_ExportStyles( bUsed );
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();