diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-05 21:02:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-05 21:02:38 +0100 |
commit | 352fc0ae2866eb0b222d90d51299c05222af8df5 (patch) | |
tree | f380e60061577468e1ba50c34fc61d57b495accd /include/svl | |
parent | 73f4ef48d065c4108de4af52a4dc7d86815b9b05 (diff) |
SfxItemSet::operator == should return bool
...and need not be virtual
Change-Id: I8cf38c4942526c6ca66595fdc3297be750ec09a0
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/itemset.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/itemset.hxx b/include/svl/itemset.hxx index 26ba3f33fe84..7157ecfabf56 100644 --- a/include/svl/itemset.hxx +++ b/include/svl/itemset.hxx @@ -143,7 +143,7 @@ public: const SfxItemPool *pRefPool = 0 ); virtual SvStream & Store( SvStream &, bool bDirect = false ) const; - virtual int operator==(const SfxItemSet &) const; + bool operator==(const SfxItemSet &) const; }; inline void SfxItemSet::SetParent( const SfxItemSet* pNew ) |