summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-23 09:49:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-24 10:36:20 +0000
commit38023af6c13602ae1856bea11693c18c0c3efa36 (patch)
treec17ef3941354f732e2fdd7c3cedb7c649f99e965 /codemaker
parent2c6ad5343de947f1646536c539b116346adb8fdc (diff)
loplugin:unusedmethods
Change-Id: If5090c330e12d6e537766bf4a9be0a2360381a7a Reviewed-on: https://gerrit.libreoffice.org/17312 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/cppumaker/dependencies.hxx16
-rw-r--r--codemaker/source/cppumaker/includes.hxx2
2 files changed, 0 insertions, 18 deletions
diff --git a/codemaker/source/cppumaker/dependencies.hxx b/codemaker/source/cppumaker/dependencies.hxx
index d0c09aed59f0..afd902bdd491 100644
--- a/codemaker/source/cppumaker/dependencies.hxx
+++ b/codemaker/source/cppumaker/dependencies.hxx
@@ -66,18 +66,8 @@ public:
~Dependencies();
- /**
- Add a special dependency (which is not obvious from the entity's data
- available at the type manager).
-
- @param name a UNOIDL entity name
- */
- void add(rtl::OUString const & name) { insert(name); }
-
Map const & getMap() const { return m_map; }
- bool hasVoidDependency() const { return m_voidDependency; }
-
bool hasBooleanDependency() const { return m_booleanDependency; }
bool hasByteDependency() const { return m_byteDependency; }
@@ -89,17 +79,11 @@ public:
bool hasLongDependency() const { return m_longDependency; }
- bool hasUnsignedLongDependency() const { return m_unsignedLongDependency; }
-
bool hasHyperDependency() const { return m_hyperDependency; }
bool hasUnsignedHyperDependency() const
{ return m_unsignedHyperDependency; }
- bool hasFloatDependency() const { return m_floatDependency; }
-
- bool hasDoubleDependency() const { return m_doubleDependency; }
-
bool hasCharDependency() const { return m_charDependency; }
bool hasStringDependency() const { return m_stringDependency; }
diff --git a/codemaker/source/cppumaker/includes.hxx b/codemaker/source/cppumaker/includes.hxx
index 6618553e7d11..c28cfb13c497 100644
--- a/codemaker/source/cppumaker/includes.hxx
+++ b/codemaker/source/cppumaker/includes.hxx
@@ -47,8 +47,6 @@ public:
void addType() { m_includeType = true; }
void addCppuMacrosHxx() { m_includeCppuMacrosHxx = true; }
void addCppuUnotypeHxx() { m_includeCppuUnotypeHxx = true; }
- void addOslDoublecheckedlockingH()
- { m_includeOslDoublecheckedlockingH = true; }
void addOslMutexHxx() { m_includeOslMutexHxx = true; }
void addRtlStrbufHxx() { m_includeRtlStrbufHxx = true; }
void addRtlStringH() { m_includeRtlStringH = true; }