From 0f912872b661a6763dfd5789c0377ca453f7e260 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 31 Mar 2014 11:47:05 +0200 Subject: xmloff: sal_Bool->bool Change-Id: Id3d8f4f4ef32280a131907ffa32eb2ad5d6ea2e1 --- include/xmloff/xmlnumi.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/xmloff/xmlnumi.hxx') diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx index 58071ec281d3..86b97264237f 100644 --- a/include/xmloff/xmlnumi.hxx +++ b/include/xmloff/xmlnumi.hxx @@ -42,8 +42,8 @@ class SvxXMLListStyleContext : public SvXMLStyleContext SvxXMLListStyle_Impl *pLevelStyles; sal_Int32 nLevels; - sal_Bool bConsecutive : 1; - sal_Bool bOutline : 1; + bool bConsecutive : 1; + bool bOutline : 1; protected: @@ -60,7 +60,7 @@ public: const OUString& rLName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList, - sal_Bool bOutl=sal_False ); + bool bOutl = false ); virtual ~SvxXMLListStyleContext(); @@ -78,8 +78,8 @@ public: const ::com::sun::star::uno::Reference < ::com::sun::star::container::XIndexReplace >& GetNumRules() const { return xNumRules; } - sal_Bool IsOutline() const { return bOutline; } - sal_Bool IsConsecutive() const { return bConsecutive; } + bool IsOutline() const { return bOutline; } + bool IsConsecutive() const { return bConsecutive; } sal_Int32 GetLevels() const { return nLevels; } static ::com::sun::star::uno::Reference < @@ -92,9 +92,9 @@ public: const ::com::sun::star::uno::Reference < ::com::sun::star::container::XIndexReplace > & rNumRule, sal_Int16 nLevel, - sal_Bool bOrdered ); + bool bOrdered ); - virtual void CreateAndInsertLate( sal_Bool bOverwrite ) SAL_OVERRIDE; + virtual void CreateAndInsertLate( bool bOverwrite ) SAL_OVERRIDE; void CreateAndInsertAuto() const; }; -- cgit