From d32be3ace8c8fd430bbecdf69f88a116b0ee91d1 Mon Sep 17 00:00:00 2001 From: Brij Mohan Lal Srivastava Date: Wed, 12 Nov 2014 14:24:10 +0530 Subject: fdo#86023 - O[U]String needs a 'clear' method Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann --- l10ntools/source/cfgmerge.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'l10ntools') diff --git a/l10ntools/source/cfgmerge.cxx b/l10ntools/source/cfgmerge.cxx index cfd471be5c1e..d68327d29e70 100644 --- a/l10ntools/source/cfgmerge.cxx +++ b/l10ntools/source/cfgmerge.cxx @@ -286,7 +286,7 @@ int CfgParser::ExecuteAnalyzedToken( int nToken, char *pToken ) { AddText( sCurrentText, sCurrentIsoLang, sCurrentResTyp ); Output( sCurrentText ); - sCurrentText = OString(); + sCurrentText.clear(); pStackData->sEndTextTag = sToken; } @@ -441,7 +441,7 @@ void CfgMerge::WorkOnText(OString &, const OString& rLangIndex) OString sGroupId; if ( aStack.size() == 1 ) { sGroupId = sLocalId; - sLocalId = OString(); + sLocalId.clear(); } else { sGroupId = aStack.GetAccessPath( aStack.size() - 2 ); -- cgit