diff options
-rw-r--r-- | helpcompiler/source/HelpLinker.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx index 0aedf9b42692..f7acc30ecc7d 100644 --- a/helpcompiler/source/HelpLinker.cxx +++ b/helpcompiler/source/HelpLinker.cxx @@ -856,13 +856,11 @@ bool compileExtensionHelp { bool bSuccess = true; - OString aOExtensionName = OUStringToOString( aExtensionName, osl_getThreadTextEncoding() ); - std::vector<std::string> args - { - std::string("-mod"), - std::string(aOExtensionName.getStr()) - }; + std::vector<std::string> args; args.reserve(nXhpFileCount + 2); + args.push_back(std::string("-mod")); + OString aOExtensionName = OUStringToOString( aExtensionName, osl_getThreadTextEncoding() ); + args.push_back(std::string(aOExtensionName.getStr())); for( sal_Int32 iXhp = 0 ; iXhp < nXhpFileCount ; ++iXhp ) { |