diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-09 20:20:50 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-09 20:22:22 +0900 |
commit | 6571193609f4fb4e5ac714b55787d172a86983fe (patch) | |
tree | e4e8c37963573b2bbdc9ebc826962dc7034ff571 /include | |
parent | fce81f66c60769137fdaa1fbeddb218507cacff0 (diff) |
sal_Bool to bool
Change-Id: Ib712c9ebf8d8e6aae5e04fec19be629d3393f5d5
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/animate.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/animate.hxx b/include/vcl/animate.hxx index dd374e8aed51..7083aa9c2c67 100644 --- a/include/vcl/animate.hxx +++ b/include/vcl/animate.hxx @@ -68,7 +68,7 @@ struct VCL_DLLPUBLIC AnimationBitmap bUserInput ( sal_False ) {} - sal_Bool operator==( const AnimationBitmap& rAnimBmp ) const + bool operator==( const AnimationBitmap& rAnimBmp ) const { return( rAnimBmp.aBmpEx == aBmpEx && rAnimBmp.aPosPix == aPosPix && @@ -78,7 +78,7 @@ struct VCL_DLLPUBLIC AnimationBitmap rAnimBmp.bUserInput == bUserInput ); } - sal_Bool operator!=( const AnimationBitmap& rAnimBmp ) const + bool operator!=( const AnimationBitmap& rAnimBmp ) const { return !( *this == rAnimBmp ); } sal_Bool IsEqual( const AnimationBitmap& rAnimBmp ) const @@ -159,8 +159,8 @@ public: ~Animation(); Animation& operator=( const Animation& rAnimation ); - sal_Bool operator==( const Animation& rAnimation ) const; - sal_Bool operator!=( const Animation& rAnimation ) const + bool operator==( const Animation& rAnimation ) const; + bool operator!=( const Animation& rAnimation ) const { return !(*this==rAnimation); } void Clear(); |