diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-04 00:15:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-04 00:18:31 +0900 |
commit | f0b5e02b323ac7520c9e1ec77ba603291e7ed325 (patch) | |
tree | 806e5c181ecd98ff094da1a2e237b47292f29828 /sw/inc/pam.hxx | |
parent | 9ed34f8137e1ec4f58151eba74507102192cb8fd (diff) |
sal_Bool to bool
Change-Id: I6a4c4f4c8129100770ca976d508ca3a98e67a846
Diffstat (limited to 'sw/inc/pam.hxx')
-rw-r--r-- | sw/inc/pam.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/pam.hxx b/sw/inc/pam.hxx index 3f4931043682..83e3489fc586 100644 --- a/sw/inc/pam.hxx +++ b/sw/inc/pam.hxx @@ -74,12 +74,12 @@ struct SW_DLLPUBLIC SwPosition */ SwDoc * GetDoc() const; - sal_Bool operator < (const SwPosition &) const; - sal_Bool operator > (const SwPosition &) const; - sal_Bool operator <=(const SwPosition &) const; - sal_Bool operator >=(const SwPosition &) const; - sal_Bool operator ==(const SwPosition &) const; - sal_Bool operator !=(const SwPosition &) const; + bool operator < (const SwPosition &) const; + bool operator > (const SwPosition &) const; + bool operator <=(const SwPosition &) const; + bool operator >=(const SwPosition &) const; + bool operator ==(const SwPosition &) const; + bool operator !=(const SwPosition &) const; }; |