summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-05 21:02:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-05 21:02:38 +0100
commit352fc0ae2866eb0b222d90d51299c05222af8df5 (patch)
treef380e60061577468e1ba50c34fc61d57b495accd /include
parentscp2: stop cargo-culting DONT_OVERWRITE around (diff)
downloadcore-352fc0ae2866eb0b222d90d51299c05222af8df5.tar.gz
core-352fc0ae2866eb0b222d90d51299c05222af8df5.zip
SfxItemSet::operator == should return bool
...and need not be virtual Change-Id: I8cf38c4942526c6ca66595fdc3297be750ec09a0
Diffstat (limited to 'include')
-rw-r--r--include/svl/itemset.hxx2
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 )