summaryrefslogtreecommitdiff
path: root/include/xmloff/xmlnume.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-31 09:05:32 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:39:02 +0200
commit0e8ab0fa298ad5c801aa94fb3e3fd2daa93d634c (patch)
treeb5cc18a766a3377df1210adb8bbb7db7aff4ef8c /include/xmloff/xmlnume.hxx
parent6ac6fb820f9e12649507cb5233c3b1727d67f2fd (diff)
xmloff: sal_Bool->bool
Change-Id: Ib4a73215187923dccd72fc7793ffd4bcbef24ab9
Diffstat (limited to 'include/xmloff/xmlnume.hxx')
-rw-r--r--include/xmloff/xmlnume.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/xmloff/xmlnume.hxx b/include/xmloff/xmlnume.hxx
index 31e858c83704..f98c7b92f11a 100644
--- a/include/xmloff/xmlnume.hxx
+++ b/include/xmloff/xmlnume.hxx
@@ -54,13 +54,13 @@ class SvxXMLNumRuleExport
void exportLevelStyles(
const ::com::sun::star::uno::Reference<
::com::sun::star::container::XIndexReplace > & xNumRule,
- sal_Bool bOutline=sal_False );
+ bool bOutline=false );
void exportLevelStyle(
sal_Int32 nLevel,
const ::com::sun::star::uno::Sequence<
::com::sun::star::beans::PropertyValue>& rProps,
- sal_Bool bOutline=sal_False );
+ bool bOutline=false );
protected:
@@ -68,7 +68,7 @@ protected:
// element.
virtual void AddListStyleAttributes();
- sal_Bool exportStyle( const ::com::sun::star::uno::Reference<
+ bool exportStyle( const ::com::sun::star::uno::Reference<
::com::sun::star::style::XStyle >& rStyle );
void exportOutline();
@@ -79,11 +79,11 @@ public:
SvxXMLNumRuleExport( SvXMLExport& rExport );
virtual ~SvxXMLNumRuleExport();
- void exportStyles( sal_Bool bUsed,
+ void exportStyles( bool bUsed,
XMLTextListAutoStylePool *pPool,
- sal_Bool bExportChapterNumbering = sal_True );
+ bool bExportChapterNumbering = true );
void exportNumberingRule(
- const OUString& rName, sal_Bool bIsHidden,
+ const OUString& rName, bool bIsHidden,
const ::com::sun::star::uno::Reference<
::com::sun::star::container::XIndexReplace > & xNumRule );
};