summaryrefslogtreecommitdiff
path: root/sw/source/ui/utlui/initui.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/utlui/initui.cxx')
-rw-r--r--sw/source/ui/utlui/initui.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/utlui/initui.cxx b/sw/source/ui/utlui/initui.cxx
index d0cd0e0cae9a..dda31eb4b604 100644
--- a/sw/source/ui/utlui/initui.cxx
+++ b/sw/source/ui/utlui/initui.cxx
@@ -238,14 +238,14 @@ ImpAutoFmtNameListLoader::ImpAutoFmtNameListLoader( std::vector<String>& rLst )
#ifdef WNT
// For Windows, a special treatment is necessary because MS has
// forgotten some characters in the dialog font here.
- p.SearchAndReplace(rtl::OUString("%1"), rtl::OUString(",,"));
- p.SearchAndReplace(rtl::OUString("%2"), rtl::OUString("''"));
+ p.SearchAndReplace(OUString("%1"), OUString(",,"));
+ p.SearchAndReplace(OUString("%2"), OUString("''"));
#else
const SvtSysLocale aSysLocale;
const LocaleDataWrapper& rLclD = aSysLocale.GetLocaleData();
// With real operating systems it also works without special handling.
- p.SearchAndReplace(rtl::OUString("%1"), rLclD.getDoubleQuotationMarkStart());
- p.SearchAndReplace(rtl::OUString("%2"), rLclD.getDoubleQuotationMarkEnd());
+ p.SearchAndReplace(OUString("%1"), rLclD.getDoubleQuotationMarkStart());
+ p.SearchAndReplace(OUString("%2"), rLclD.getDoubleQuotationMarkEnd());
#endif
}
rLst.insert(rLst.begin() + n, p);