diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-02-25 03:12:24 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-02-25 03:14:01 +0100 |
commit | 89003e9bd84634ac252c7cace5c7dfb53af1126d (patch) | |
tree | f0b18c53ac327db6cd0d9864fad80bf5699eec12 /l10ntools | |
parent | 405caad685edd0ba914789bda01b5dc9b3030773 (diff) |
loplugin: unused variables
Change-Id: I63553a09eec81e5ae28aa79ee1d3281053b23d06
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/helpmerge.cxx | 1 | ||||
-rw-r--r-- | l10ntools/source/xmlparse.cxx | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 3612f1fbd14d..78c7ed10fe69 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -234,7 +234,6 @@ void HelpParser::ProcessHelp( LangHashMap* aLangHM , const rtl::OString& sCur , PFormEntrys *pEntrys = NULL; rtl::OString sLId; - rtl::OString sGId; pEntrys = NULL; diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx index b9e9ff37c59f..b44e29bebb75 100644 --- a/l10ntools/source/xmlparse.cxx +++ b/l10ntools/source/xmlparse.cxx @@ -349,7 +349,7 @@ void XMLFile::Extract( XMLFile *pCur ) /*****************************************************************************/ void XMLFile::InsertL10NElement( XMLElement* pElement ){ /*****************************************************************************/ - rtl::OString tmpStr,id,oldref,language(""); + rtl::OString tmpStr,id,language(""); LangHashMap* elem; if( pElement->GetAttributeList() != NULL ){ @@ -509,7 +509,6 @@ bool XMLFile::CheckExportStatus( XMLParentNode *pCur ) /*****************************************************************************/ { static bool bStatusExport = true; - const rtl::OString LOCALIZE("localize"); const rtl::OString STATUS(RTL_CONSTASCII_STRINGPARAM("status")); const rtl::OString PUBLISH(RTL_CONSTASCII_STRINGPARAM("PUBLISH")); const rtl::OString DEPRECATED(RTL_CONSTASCII_STRINGPARAM("DEPRECATED")); |