diff options
Diffstat (limited to 'idl')
-rw-r--r-- | idl/inc/hash.hxx | 2 | ||||
-rw-r--r-- | idl/source/cmptools/hash.cxx | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx index 458a22d29589..c0dd517190ce 100644 --- a/idl/inc/hash.hxx +++ b/idl/inc/hash.hxx @@ -60,13 +60,13 @@ public: , bHasId(false) { } + SvStringHashEntry( const OString& rName ) : aName(rName) , nValue(0) , bHasId(true) { } - virtual ~SvStringHashEntry(); const OString& GetName() const { return aName; } bool HasId() const { return bHasId; } diff --git a/idl/source/cmptools/hash.cxx b/idl/source/cmptools/hash.cxx index a03f4cd60316..76976b4bf3d9 100644 --- a/idl/source/cmptools/hash.cxx +++ b/idl/source/cmptools/hash.cxx @@ -28,8 +28,6 @@ #include <rtl/character.hxx> -SvStringHashEntry::~SvStringHashEntry() { }; - SvHashTable::SvHashTable( sal_uInt32 nMaxEntries ) { nMax = nMaxEntries; // set max entries |