From 1946794ae09ba732022fe6a74ea45e304ab70b84 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Sun, 7 Apr 2013 12:06:47 +0200 Subject: mass removal of rtl:: prefixes for O(U)String* Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09 --- lotuswordpro/source/filter/lwpnumericfmt.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lotuswordpro/source/filter/lwpnumericfmt.cxx') diff --git a/lotuswordpro/source/filter/lwpnumericfmt.cxx b/lotuswordpro/source/filter/lwpnumericfmt.cxx index 8c22e0bc2af2..4956575ec1ba 100644 --- a/lotuswordpro/source/filter/lwpnumericfmt.cxx +++ b/lotuswordpro/source/filter/lwpnumericfmt.cxx @@ -304,14 +304,14 @@ void LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, String& aP { if (bNegtive) { - aPrefix = rtl::OUString("("); + aPrefix = OUString("("); } if (!bPost) { aPrefix += aSymbol; if (bShowSpace) { - aPrefix += rtl::OUString(" "); + aPrefix += OUString(" "); } } } @@ -322,14 +322,14 @@ void LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, String& aP aSuffix = aSymbol; if (bShowSpace) { - aSuffix.Insert(rtl::OUString(" "),0); + aSuffix.Insert(OUString(" "),0); } } if (bNegtive) { - aSuffix += rtl::OUString(")"); + aSuffix += OUString(")"); } } } @@ -421,11 +421,11 @@ XFStyle* LwpNumericFormat::Convert() { if (cNegative.IsDefaultPrefix() && aNegPrefix.Len() == 0) { - aNegPrefix = rtl::OUString("("); + aNegPrefix = OUString("("); } if (cNegative.IsDefaultSuffix() && aNegSuffix.Len() == 0) { - aNegSuffix = rtl::OUString(")"); + aNegSuffix = OUString(")"); } } -- cgit