diff options
Diffstat (limited to 'sw/inc')
-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; }; |