diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-31 11:47:05 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:39:03 +0200 |
commit | 0f912872b661a6763dfd5789c0377ca453f7e260 (patch) | |
tree | 7a21e618293c5873ab3370ba7ffe8e0cb78fb838 /include/xmloff/xmlnumi.hxx | |
parent | 0e8ab0fa298ad5c801aa94fb3e3fd2daa93d634c (diff) |
xmloff: sal_Bool->bool
Change-Id: Id3d8f4f4ef32280a131907ffa32eb2ad5d6ea2e1
Diffstat (limited to 'include/xmloff/xmlnumi.hxx')
-rw-r--r-- | include/xmloff/xmlnumi.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
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; }; |