From 7855ea48309ee2ba06ee5f3d5dac27ecfc4ca4a6 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 1 Jul 2016 13:20:11 +0200 Subject: remove comphelper::string::remove and replace it with OUString/OString::replaceAll Change-Id: I37b1c3b51251dfd9d749d6f1060c75b3a93d7f1a Reviewed-on: https://gerrit.libreoffice.org/26850 Tested-by: Jenkins Reviewed-by: Noel Grandin --- rsc/source/rsc/rsc.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rsc') diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index 3c6eb9c8b1d6..962616780452 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -894,7 +894,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile, aLine = comphelper::string::stripStart(aLine, ' '); aLine = comphelper::string::stripStart(aLine, '\t'); - aLine = comphelper::string::remove(aLine, ';'); + aLine = aLine.replaceAll(";", ""); if (comphelper::string::isdigitAsciiString(aLine)) { -- cgit