summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-22 14:32:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-23 04:46:35 +0000
commit46d3163f779a43cc7c023a6e8141f990e5d23292 (patch)
tree99c87b90b69f3c59edb91206b364a4e5c9b1c640 /idl
parentc2a20af2c12bf75e7378a3a9dbc50a4dddabdebc (diff)
loplugin:unusedmethods
Change-Id: Ife4c8d948ffa116f044d43903de9485e43cfcae5 Reviewed-on: https://gerrit.libreoffice.org/32336 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/hash.hxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx
index 11edb80505de..437adfc4469c 100644
--- a/idl/inc/hash.hxx
+++ b/idl/inc/hash.hxx
@@ -30,23 +30,14 @@ class SvStringHashEntry
{
OString aName;
sal_uLong nValue;
- bool bHasId;
public:
- SvStringHashEntry()
- : nValue(0)
- , bHasId(false)
- {
- }
-
SvStringHashEntry( const OString& rName )
: aName(rName)
, nValue(0)
- , bHasId(true)
{
}
const OString& GetName() const { return aName; }
- bool HasId() const { return bHasId; }
void SetValue( sal_uLong n ) { nValue = n; }
sal_uLong GetValue() const { return nValue; }