diff options
Diffstat (limited to 'include/vcl/pointr.hxx')
-rw-r--r-- | include/vcl/pointr.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/pointr.hxx b/include/vcl/pointr.hxx index 44f7430b44a7..751739714dad 100644 --- a/include/vcl/pointr.hxx +++ b/include/vcl/pointr.hxx @@ -37,9 +37,9 @@ public: PointerStyle GetStyle() const { return meStyle; } - sal_Bool operator==( const Pointer& rPointer ) const + bool operator==( const Pointer& rPointer ) const { return (meStyle == rPointer.meStyle); } - sal_Bool operator!=( const Pointer& rPointer ) const + bool operator!=( const Pointer& rPointer ) const { return !(Pointer::operator==( rPointer )); } }; |