summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index 335820c21d7e..439d45e790f3 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -1455,9 +1455,10 @@ OUString KeyDataBaseFileIterator::nextDbFile( bool& o_rbExtension )
switch( m_eState )
{
case IteratorState::InitialModule:
- aRetFile = OUStringBuffer(m_rDatabases.getInstallPathAsURL()).
- append(m_rDatabases.processLang(m_aLanguage)).append('/').
- append(m_aInitialModule).append(".key").makeStringAndClear();
+ aRetFile = m_rDatabases.getInstallPathAsURL() +
+ m_rDatabases.processLang(m_aLanguage) +
+ "/" +
+ m_aInitialModule + ".key";
o_rbExtension = false;