diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-13 13:21:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-14 14:15:15 +0200 |
commit | f44024d1a065005bcbc991525df059cd86bc2363 (patch) | |
tree | b17ab7d50231bbb4a1616b502c3b5d82237fce95 /xmloff/source/text | |
parent | 982df8a29a753fe32512120472fd482b81d2f11c (diff) |
sal_Bool->bool
Change-Id: Iadc9f9ef444fe36d58304c2d6219021173385118
Diffstat (limited to 'xmloff/source/text')
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
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(); |