diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-10 00:02:56 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-10 00:12:21 +0900 |
commit | 3fa2c6da4a912856f4a0572fafe7b32fc7d57e88 (patch) | |
tree | c7bfb1f7a8946b8280282b8ca3b314e7f4e32e33 /sw/inc/viewopt.hxx | |
parent | 68d40d2cae3700f4134375fcaf9649ac626ada7d (diff) |
sal_Bool to bool
Change-Id: Ib83c02d53fbae6a70781d9d9d7ab015b016c72a8
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r-- | sw/inc/viewopt.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx index 6c21e73c11a0..8efc3d40b1a7 100644 --- a/sw/inc/viewopt.hxx +++ b/sw/inc/viewopt.hxx @@ -431,9 +431,9 @@ public: SwViewOption& operator=( const SwViewOption &rOpt ); // Compare methods. - sal_Bool IsEqualFlags ( const SwViewOption &rOpt ) const; - inline sal_Bool operator == ( const SwViewOption &rOpt ) const; - inline sal_Bool operator != ( const SwViewOption &rOpt ) const { return !(*this == rOpt); } + bool IsEqualFlags ( const SwViewOption &rOpt ) const; + inline bool operator == ( const SwViewOption &rOpt ) const; + inline bool operator != ( const SwViewOption &rOpt ) const { return !(*this == rOpt); } /*--------------------------------------------------------------------------- @@ -572,7 +572,7 @@ public: }; -inline sal_Bool SwViewOption::operator==( const SwViewOption &rOpt ) const +inline bool SwViewOption::operator==( const SwViewOption &rOpt ) const { return IsEqualFlags( rOpt ) && nZoom == rOpt.GetZoom(); } |