diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 17:43:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:21:09 +0200 |
commit | a602a1ce43ea5debf6693d83dd5b164942574969 (patch) | |
tree | 114b2014c9cb86f0a9082582d0d049ab37648a9b /include/editeng/numitem.hxx | |
parent | 99d4b08d05c6edba43675661c70736a2a062af21 (diff) |
operator == return type wants to be bool
Change-Id: I7ef0a09b718ca701ed2b6f4a50593f8ef1421dd3
Diffstat (limited to 'include/editeng/numitem.hxx')
-rw-r--r-- | include/editeng/numitem.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx index 7a12b5b10f8f..e959b70e04dd 100644 --- a/include/editeng/numitem.hxx +++ b/include/editeng/numitem.hxx @@ -262,7 +262,7 @@ public: SvxNumRule(SvStream &rStream); virtual ~SvxNumRule(); - int operator==( const SvxNumRule& ) const; + bool operator==( const SvxNumRule& ) const; bool operator!=( const SvxNumRule& rRule ) const {return !(*this == rRule);} SvxNumRule& operator=( const SvxNumRule& ); |