diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 15:46:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 16:07:45 +0100 |
commit | 070dfe4840cfb5854be6aba99dd65b9015ed0a90 (patch) | |
tree | df628ff2910d179ce65c5ec20694da76c4ba4f37 /editeng/inc | |
parent | 9886c392383007ff86c849f61c641e4603f13259 (diff) |
WaE: mixing comparison of bool and sal_Bool
Diffstat (limited to 'editeng/inc')
-rw-r--r-- | editeng/inc/editeng/editeng.hxx | 4 | ||||
-rw-r--r-- | editeng/inc/editeng/editobj.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/editeng/inc/editeng/editeng.hxx b/editeng/inc/editeng/editeng.hxx index f2208a9e5056..8b23f00a5834 100644 --- a/editeng/inc/editeng/editeng.hxx +++ b/editeng/inc/editeng/editeng.hxx @@ -223,8 +223,8 @@ public: void SetPaperSize( const Size& rSize ); const Size& GetPaperSize() const; - void SetVertical( sal_Bool bVertical ); - sal_Bool IsVertical() const; + void SetVertical( bool bVertical ); + bool IsVertical() const; void SetFixedCellHeight( sal_Bool bUseFixedCellHeight ); diff --git a/editeng/inc/editeng/editobj.hxx b/editeng/inc/editeng/editobj.hxx index b495efbfe631..c57a70b0e3e0 100644 --- a/editeng/inc/editeng/editobj.hxx +++ b/editeng/inc/editeng/editobj.hxx @@ -72,8 +72,8 @@ public: virtual sal_uLong GetObjectSettings() const; virtual void SetObjectSettings( sal_uLong n ); - virtual sal_Bool IsVertical() const; - virtual void SetVertical( sal_Bool bVertical ); + virtual bool IsVertical() const; + virtual void SetVertical( bool bVertical ); virtual sal_uInt16 GetScriptType() const; |