diff options
Diffstat (limited to 'include/svx/pageitem.hxx')
-rw-r--r-- | include/svx/pageitem.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/pageitem.hxx b/include/svx/pageitem.hxx index 2062347bb815..ac479ae65dc1 100644 --- a/include/svx/pageitem.hxx +++ b/include/svx/pageitem.hxx @@ -63,7 +63,7 @@ class SVX_DLLPUBLIC SvxPageItem: public SfxPoolItem private: OUString aDescName; // name of the template SvxNumType eNumType; // enumeration - sal_Bool bLandscape; // Portrait / Landscape + bool bLandscape; // Portrait / Landscape sal_uInt16 eUse; // Layout public: @@ -89,8 +89,8 @@ public: sal_uInt16 GetPageUsage() const { return eUse; } void SetPageUsage(sal_uInt16 eU) { eUse= eU; } - sal_Bool IsLandscape() const { return bLandscape; } - void SetLandscape(sal_Bool bL) { bLandscape = bL; } + bool IsLandscape() const { return bLandscape; } + void SetLandscape(bool bL) { bLandscape = bL; } // enumeration SvxNumType GetNumType() const { return eNumType; } |