summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-29 11:41:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-29 11:43:40 +0000
commit9bfd742d8cdc4aab3dd817f13ab4cfa5cc60ae12 (patch)
tree51815ec709869dd297c10b8359b3bc4736204a98 /idl
parentcfaba15c589f882cc0bcce5cd07bdf3d30f547f6 (diff)
loplugin:unusedmethods
Change-Id: Ib008613fb06c82791c63d5b074a3e2ff1c3607a0 Reviewed-on: https://gerrit.libreoffice.org/35834 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/database.hxx1
-rw-r--r--idl/inc/types.hxx5
2 files changed, 0 insertions, 6 deletions
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx
index 25381c324e34..0a9383cbc402 100644
--- a/idl/inc/database.hxx
+++ b/idl/inc/database.hxx
@@ -94,7 +94,6 @@ public:
explicit SvIdlDataBase( const SvCommand& rCmd );
~SvIdlDataBase();
- SvRefMemberList<SvMetaSlot *>& GetSlotList() { return aSlotList; }
SvRefMemberList<SvMetaType *>& GetTypeList();
SvRefMemberList<SvMetaClass *>& GetClassList() { return aClassList; }
SvRefMemberList<SvMetaModule *>& GetModuleList() { return aModuleList; }
diff --git a/idl/inc/types.hxx b/idl/inc/types.hxx
index 01f5c99687af..5ecf4359d88a 100644
--- a/idl/inc/types.hxx
+++ b/idl/inc/types.hxx
@@ -104,11 +104,6 @@ public:
SvRefMemberList<SvMetaEnumValue *> aEnumValueList;
OString aPrefix;
SvMetaTypeEnum();
-
- sal_uLong Count() const { return aEnumValueList.size(); }
- const OString& GetPrefix() const { return aPrefix; }
- SvMetaEnumValue * GetObject( sal_uLong n ) const
- { return aEnumValueList[n]; }
};
class SvMetaTypevoid : public SvMetaType