summaryrefslogtreecommitdiff
path: root/l10ntools/source/propmerge.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/propmerge.cxx')
-rw-r--r--l10ntools/source/propmerge.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/l10ntools/source/propmerge.cxx b/l10ntools/source/propmerge.cxx
index 7b74ab4d3cf8..c17519364443 100644
--- a/l10ntools/source/propmerge.cxx
+++ b/l10ntools/source/propmerge.cxx
@@ -20,6 +20,7 @@
#include <export.hxx>
#include <common.hxx>
#include <propmerge.hxx>
+#include <utility>
namespace
{
@@ -88,10 +89,10 @@ namespace
//Open source file and store its lines
PropParser::PropParser(
- const OString& rInputFile, const OString& rLang,
+ OString _sInputFile, OString _sLang,
const bool bMergeMode )
- : m_sSource( rInputFile )
- , m_sLang( rLang )
+ : m_sSource(std::move( _sInputFile ))
+ , m_sLang(std::move( _sLang ))
, m_bIsInitialized( false )
{
std::ifstream aIfstream( m_sSource.getStr() );