summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-10 14:13:27 +0200
committerNoel Grandin <noel@peralex.com>2013-10-15 12:25:33 +0200
commitb0591c16fa5310353c7f0d0e84f957f04c6f1f20 (patch)
tree3ce4e3987bd91c5e0bc71f2e6aa3bc86583b5af7 /sw
parent1ffa195dc885a42d4e64304ed18916745342af9d (diff)
convert sw/inc/swcalwrp.hxx from String to OUString
Change-Id: I59f62246c557f702baa97c8928d34709d6f09b11
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/swcalwrp.hxx2
-rw-r--r--sw/source/core/bastyp/init.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/swcalwrp.hxx b/sw/inc/swcalwrp.hxx
index 622d742ee475..f624ad79eaca 100644
--- a/sw/inc/swcalwrp.hxx
+++ b/sw/inc/swcalwrp.hxx
@@ -27,7 +27,7 @@
class SwCalendarWrapper : public CalendarWrapper
{
- String sUniqueId;
+ OUString sUniqueId;
sal_uInt16 nLang;
public:
diff --git a/sw/source/core/bastyp/init.cxx b/sw/source/core/bastyp/init.cxx
index 4a0ca16bc23b..8f99c80c0ff3 100644
--- a/sw/source/core/bastyp/init.cxx
+++ b/sw/source/core/bastyp/init.cxx
@@ -831,7 +831,7 @@ CharClass& GetAppCharClass()
void SwCalendarWrapper::LoadDefaultCalendar( sal_uInt16 eLang )
{
- sUniqueId.Erase();
+ sUniqueId = "";
if( eLang != nLang )
loadDefaultCalendar( LanguageTag::convertToLocale( nLang = eLang ));
}