diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-27 17:24:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:36:54 +0200 |
commit | ddb07081da099a392b1cdcbb8716afb6af43e006 (patch) | |
tree | be0017dab7a3996402c33bad613dd601e22c27b5 /sw | |
parent | 3f60a32aa2413ca67eb243a3ba91abd3327a07b3 (diff) |
xmloff: sal_Bool->bool
Change-Id: I1deb10cb1581137ab92e73367e63339822a9a094
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmlfmte.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmlfmte.cxx b/sw/source/filter/xml/xmlfmte.cxx index 008ffc21e289..537ed00dfd69 100644 --- a/sw/source/filter/xml/xmlfmte.cxx +++ b/sw/source/filter/xml/xmlfmte.cxx @@ -192,7 +192,7 @@ void SwXMLExport::_ExportAutoStyles() // exported in _ExportMasterStyles if( (getExportFlags() & EXPORT_MASTERSTYLES) != 0 ) - GetPageExport()->collectAutoStyles( sal_False ); + GetPageExport()->collectAutoStyles( false ); // if we don't export styles (i.e. in content stream only, but not // in single-stream case), then we can save ourselves a bit of @@ -244,7 +244,7 @@ XMLPageExport* SwXMLExport::CreatePageExport() void SwXMLExport::_ExportMasterStyles() { // export master styles - GetPageExport()->exportMasterStyles( sal_False ); + GetPageExport()->exportMasterStyles( false ); } class SwXMLAutoStylePoolP : public SvXMLAutoStylePoolP |