summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-18 10:29:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-18 15:22:40 +0200
commitd7f2c36d25dd693ac4ac3ab645ee841e617d2bd1 (patch)
tree46516895aefcb6e8f54dd286c6af9d89fbecb44d /i18npool
parent5d86154f49d713dada4aaa541755076cfeefa2c6 (diff)
loplugin:unusedmethods
Change-Id: I5f63ac44654ed3fc658e72e0d1148a5a22decc47 Reviewed-on: https://gerrit.libreoffice.org/60662 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx8
-rw-r--r--i18npool/source/localedata/LocaleNode.hxx2
2 files changed, 0 insertions, 10 deletions
diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx
index 37a732690d6d..ff384c394fcc 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -2311,14 +2311,6 @@ OUString Attr::getValueByName (const sal_Char *str) const {
return OUString();
}
-sal_Int32 Attr::getLength() const{
- return name.getLength();
-}
-
-const OUString& Attr::getTypeByIndex (sal_Int32 idx) const {
- return name[idx];
-}
-
const OUString& Attr::getValueByIndex (sal_Int32 idx) const
{
return value[idx];
diff --git a/i18npool/source/localedata/LocaleNode.hxx b/i18npool/source/localedata/LocaleNode.hxx
index ae32d30e7eea..7b19cbc82a73 100644
--- a/i18npool/source/localedata/LocaleNode.hxx
+++ b/i18npool/source/localedata/LocaleNode.hxx
@@ -75,8 +75,6 @@ class Attr {
public:
explicit Attr (const Reference< XAttributeList > & attr);
OUString getValueByName (const sal_Char *str) const;
- sal_Int32 getLength() const;
- const OUString& getTypeByIndex (sal_Int32 idx) const;
const OUString& getValueByIndex (sal_Int32 idx) const ;
};