From 5112f6a6c6e4cd76045f31e269a679b50dc83fb2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Nov 2013 11:10:15 +0200 Subject: remove RTL_CONSTASCII_STRINGPARAM in OString constructor Convert code like: OString aKeyName(RTL_CONSTASCII_STRINGPARAM("NDX")); to: OString aKeyName("NDX"); which compiles down to the same code Change-Id: I1780264cae4484fc78f0586b0750c09f2dce135f --- l10ntools/source/cfgmerge.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l10ntools') diff --git a/l10ntools/source/cfgmerge.cxx b/l10ntools/source/cfgmerge.cxx index 63f4a8f01acf..fc3e594f76e6 100644 --- a/l10ntools/source/cfgmerge.cxx +++ b/l10ntools/source/cfgmerge.cxx @@ -358,7 +358,7 @@ void CfgExport::WorkOnResourceEnd() if ( bLocalize ) { if ( !pStackData->sText["en-US"].isEmpty() ) { - OString sXComment = pStackData->sText[OString(RTL_CONSTASCII_STRINGPARAM("x-comment"))]; + OString sXComment = pStackData->sText[OString("x-comment")]; OString sLocalId = pStackData->sIdentifier; OString sGroupId; if ( aStack.size() == 1 ) { -- cgit