From 352fc0ae2866eb0b222d90d51299c05222af8df5 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 5 Feb 2014 21:02:38 +0100 Subject: SfxItemSet::operator == should return bool ...and need not be virtual Change-Id: I8cf38c4942526c6ca66595fdc3297be750ec09a0 --- include/svl/itemset.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/svl') 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 ) -- cgit