summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-19 15:17:30 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-01-20 08:13:51 +0000
commit4ff5a5558472beee85eb1234dcc2aa2ed9000f6c (patch)
treeb2a0a83933064b7a22db0e27c0a3d8b7339053de /idl
parent3179e8f7e6ce550bbe766ed730e68b0374944dd5 (diff)
loplugin:unusedmethods
Change-Id: Ib2dc804f55d1a96ae01f2cf31b7d55956040a72e Reviewed-on: https://gerrit.libreoffice.org/21603 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/bastype.hxx6
-rw-r--r--idl/inc/hash.hxx2
2 files changed, 0 insertions, 8 deletions
diff --git a/idl/inc/bastype.hxx b/idl/inc/bastype.hxx
index f31121a78cca..de0d8aa7df66 100644
--- a/idl/inc/bastype.hxx
+++ b/idl/inc/bastype.hxx
@@ -134,12 +134,6 @@ class SvVersion
sal_uInt16 nMinorVersion;
public:
SvVersion() : nMajorVersion( 1 ), nMinorVersion( 0 ) {}
- bool operator == ( const SvVersion & r )
- {
- return (r.nMajorVersion == nMajorVersion)
- && (r.nMinorVersion == nMinorVersion);
- }
-
bool ReadSvIdl( SvTokenStream & rInStm );
};
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx
index 39fdf767ba0d..70a5d6a63ddd 100644
--- a/idl/inc/hash.hxx
+++ b/idl/inc/hash.hxx
@@ -77,8 +77,6 @@ public:
void SetValue( sal_uLong n ) { nValue = n; }
sal_uLong GetValue() const { return nValue; }
- bool operator == ( const SvStringHashEntry & rRef )
- { return nHashId == rRef.nHashId; }
SvStringHashEntry & operator = ( const SvStringHashEntry & rRef )
{ SvRefBase::operator=( rRef );
aName = rRef.aName;