summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-30 16:38:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-06-30 16:38:20 +0200
commitf393b34cd0f11679f1229cdb3afc91d0d654e8ed (patch)
treef2405c37f5112a83154f587271d51cee921f19fe
parent42634a370dddb23c51747fe5616a4988f27e84d7 (diff)
lang_ is unused
...ever since 8b8926aeba974cf07fdbaf121a11ef8a2c3c23e0 "Initial revison" Change-Id: Ice5655cfa8981cb6a97aeb710ab779b2be3f3c96
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index 1038566cc3f0..8e8aa07fa8a8 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -366,7 +366,7 @@ StaticModuleInformation* Databases::getStaticInformationForModule( const OUStrin
cfgFile.close();
const sal_Unicode* str = fileContent.getStr();
- OUString current,lang_,program,startid,title;
+ OUString current,program,startid,title;
OUString order( "1" );
for( sal_Int32 i = 0;i < fileContent.getLength();i++ )
@@ -386,10 +386,6 @@ StaticModuleInformation* Databases::getStaticInformationForModule( const OUStrin
{
startid = current.copy( current.indexOf('=') + 1 );
}
- else if( current.startsWith("Language") )
- {
- lang_ = current.copy( current.indexOf('=') + 1 );
- }
else if( current.startsWith("Program") )
{
program = current.copy( current.indexOf('=') + 1 );