diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-09-29 01:38:27 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-09-29 10:46:59 +0200 |
commit | 8b7bc95275b19affebf50b3ecba6c763f63bc1c5 (patch) | |
tree | b3a92342579dcdd318134eeb70de07031d897d3c /sw/source/ui | |
parent | 9811d927766ec54c0ca7e163df3bd762caab0355 (diff) |
String to OUString
Change-Id: I6cff1659b0bacef0bed90fb9767513018a7eeba7
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/shells/textsh1.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/wrtsh/wrtsh1.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/shells/textsh1.cxx b/sw/source/ui/shells/textsh1.cxx index 902a885ae8c3..c018b5f15021 100644 --- a/sw/source/ui/shells/textsh1.cxx +++ b/sw/source/ui/shells/textsh1.cxx @@ -1066,7 +1066,7 @@ void SwTextShell::Execute(SfxRequest &rReq) break; case FN_NUM_CONTINUE: { - String sContinuedListId; + OUString sContinuedListId; const SwNumRule* pRule = rWrtSh.SearchNumRule( false, true, false, -1, sContinuedListId ); // #i86492# @@ -1680,7 +1680,7 @@ void SwTextShell::GetState( SfxItemSet &rSet ) { // #i86492# // Search also for bullet list - String aDummy; + OUString aDummy; const SwNumRule* pRule = rSh.SearchNumRule( false, true, false, -1, aDummy ); if ( !pRule ) diff --git a/sw/source/ui/wrtsh/wrtsh1.cxx b/sw/source/ui/wrtsh/wrtsh1.cxx index 0cda8cfe1695..c87aaa1f6493 100644 --- a/sw/source/ui/wrtsh/wrtsh1.cxx +++ b/sw/source/ui/wrtsh/wrtsh1.cxx @@ -1139,7 +1139,7 @@ void SwWrtShell::NumOrBulletOn(sal_Bool bNum) } // Search for a previous numbering/bullet rule to continue it. - String sContinuedListId; + OUString sContinuedListId; if ( !pNumRule ) { pNumRule = GetDoc()->SearchNumRule( *GetCrsr()->GetPoint(), |