summaryrefslogtreecommitdiff
path: root/sfx2/inc/bitset.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-11 13:07:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-11 13:17:09 +0100
commitc599d100168e2022cb2323503f3c49ae1ec91513 (patch)
tree6e3312b3546a5108fafcee811530eb826cbb7c6d /sfx2/inc/bitset.hxx
parent9f2e50408f724c2b8a2b13e322325b6d535d1477 (diff)
loplugin:privatebase: Make derivation from BitSet explicitly private
Change-Id: I9c61aee4cbf3f461c84f064ac8259e51aa7b0ada
Diffstat (limited to 'sfx2/inc/bitset.hxx')
-rw-r--r--sfx2/inc/bitset.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx
index 42807935fb35..67651e1a15bc 100644
--- a/sfx2/inc/bitset.hxx
+++ b/sfx2/inc/bitset.hxx
@@ -137,7 +137,7 @@ inline bool BitSet::operator!=( const BitSet& rSet ) const
return !( *this == rSet );
}
-class IndexBitSet : BitSet
+class IndexBitSet : private BitSet
{
public:
sal_uInt16 GetFreeIndex();