summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-15 13:41:11 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-16 05:47:52 +0000
commit4ca2cf1b7e57c823e911bcbae0c87102a7c9851e (patch)
tree28725536883828d5d7af2cb8a4e7733968888d9d /sfx2/inc
parent80cbfb75026f4673b14237650302c3da1cc5ab13 (diff)
loplugin:unusedmethods sfx2
Change-Id: I98c455d89f76fbcacf74929a4e8775b4da697f62 Reviewed-on: https://gerrit.libreoffice.org/17069 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/bitset.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx
index 79a6981088c8..42807935fb35 100644
--- a/sfx2/inc/bitset.hxx
+++ b/sfx2/inc/bitset.hxx
@@ -34,7 +34,6 @@ public:
BitSet();
BitSet( const BitSet& rOrig );
~BitSet();
- sal_uInt16 Count() const;
BitSet& operator=( const BitSet& rOrig );
BitSet& operator=( sal_uInt16 nBit );
BitSet operator|( const BitSet& rSet ) const;
@@ -63,12 +62,6 @@ inline bool BitSet::operator!() const
return nCount == 0;
}
-// returns the number of bits in the bitset
-inline sal_uInt16 BitSet::Count() const
-{
- return nCount;
-}
-
// creates the union of two bitset
inline BitSet BitSet::operator|( const BitSet& rSet ) const
{