summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-13 10:51:01 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:14 +0200
commitfd3c9e16e1bf0db8cf8d549b864ae35f9ec3aa1e (patch)
tree6481c52876bb9315568c0f4b47037250d4b2ae4a /include
parentc6a526b20f6cf0738831ba38f93028cbc97e160f (diff)
sal_Bool->bool
Change-Id: Ia453c7868e030e3f10a7f69c1e2d28244758fdef
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/XMLPageExport.hxx2
-rw-r--r--include/xmloff/XMLTextMasterPageExport.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/xmloff/XMLPageExport.hxx b/include/xmloff/XMLPageExport.hxx
index 4aa19cb4e869..a9da8ec368a9 100644
--- a/include/xmloff/XMLPageExport.hxx
+++ b/include/xmloff/XMLPageExport.hxx
@@ -79,7 +79,7 @@ protected:
virtual void exportMasterPageContent(
const ::com::sun::star::uno::Reference <
::com::sun::star::beans::XPropertySet > & rPropSet,
- sal_Bool bAutoStyles );
+ bool bAutoStyles );
sal_Bool exportStyle(
const ::com::sun::star::uno::Reference<
diff --git a/include/xmloff/XMLTextMasterPageExport.hxx b/include/xmloff/XMLTextMasterPageExport.hxx
index 3d07964dfb29..495db63884ba 100644
--- a/include/xmloff/XMLTextMasterPageExport.hxx
+++ b/include/xmloff/XMLTextMasterPageExport.hxx
@@ -51,12 +51,12 @@ protected:
virtual void exportHeaderFooterContent(
const ::com::sun::star::uno::Reference<
::com::sun::star::text::XText >& rText,
- sal_Bool bAutoStyles, sal_Bool bExportParagraph = sal_True );
+ bool bAutoStyles, bool bExportParagraph = true );
virtual void exportMasterPageContent(
const ::com::sun::star::uno::Reference <
::com::sun::star::beans::XPropertySet > & rPropSet,
- sal_Bool bAutoStyles );
+ bool bAutoStyles );
public:
XMLTextMasterPageExport( SvXMLExport& rExp );