summaryrefslogtreecommitdiff
path: root/sd/source/ui/func
diff options
context:
space:
mode:
authorMÁTÉ Gergely <sportember@caesar.elte.hu>2013-07-27 00:53:45 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-07-28 21:20:10 +0000
commitaf079c886f9643d539a16065dc4e96d70fac422b (patch)
treefa20253acd70b79b5ed3a9992039eef56e00dd4b /sd/source/ui/func
parentad94820ed7bdfb9353d02345e70e02cf2c518893 (diff)
Converting to OUString in sd in sdundo.hxx and related files.
Change-Id: I5e9c1122ccfe9dfadfb36c4ab419c429c2bda6d0 Reviewed-on: https://gerrit.libreoffice.org/5135 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r--sd/source/ui/func/fuoaprms.cxx2
-rw-r--r--sd/source/ui/func/fupage.cxx2
-rw-r--r--sd/source/ui/func/undoback.cxx2
-rw-r--r--sd/source/ui/func/undolayer.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/func/fuoaprms.cxx b/sd/source/ui/func/fuoaprms.cxx
index 3efc8aecf4eb..ae0f6c5c1a90 100644
--- a/sd/source/ui/func/fuoaprms.cxx
+++ b/sd/source/ui/func/fuoaprms.cxx
@@ -619,7 +619,7 @@ void FuObjectAnimationParameters::DoExecute( SfxRequest& rReq )
nSecondPlayFullSet == ATTR_SET)
{
// String for undo-group and list-action
- String aComment(SdResId(STR_UNDO_ANIMATION));
+ OUString aComment(SdResId(STR_UNDO_ANIMATION));
// with 'following curves', we have an additional UndoAction
// therefore cling? here
diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx
index ae49182c2205..abae1282329a 100644
--- a/sd/source/ui/func/fupage.cxx
+++ b/sd/source/ui/func/fupage.cxx
@@ -390,7 +390,7 @@ const SfxItemSet* FuPage::ExecuteDialog( Window* pParent )
}
else if( bSetToAllPages )
{
- String aComment(SdResId(STR_UNDO_CHANGE_PAGEFORMAT));
+ OUString aComment(SdResId(STR_UNDO_CHANGE_PAGEFORMAT));
::svl::IUndoManager* pUndoMgr = mpDocSh->GetUndoManager();
pUndoMgr->EnterListAction(aComment, aComment);
SdUndoGroup* pUndoGroup = new SdUndoGroup(mpDoc);
diff --git a/sd/source/ui/func/undoback.cxx b/sd/source/ui/func/undoback.cxx
index 255ec111be70..8b821cbe8780 100644
--- a/sd/source/ui/func/undoback.cxx
+++ b/sd/source/ui/func/undoback.cxx
@@ -36,7 +36,7 @@ SdBackgroundObjUndoAction::SdBackgroundObjUndoAction(
mrPage(rPage),
mpItemSet(new SfxItemSet(rItenSet))
{
- String aString( SdResId( STR_UNDO_CHANGE_PAGEFORMAT ) );
+ OUString aString( SdResId( STR_UNDO_CHANGE_PAGEFORMAT ) );
SetComment( aString );
}
diff --git a/sd/source/ui/func/undolayer.cxx b/sd/source/ui/func/undolayer.cxx
index 11bae9c043cf..52868cccb6de 100644
--- a/sd/source/ui/func/undolayer.cxx
+++ b/sd/source/ui/func/undolayer.cxx
@@ -47,7 +47,7 @@ SdLayerModifyUndoAction::SdLayerModifyUndoAction(
mbNewIsLocked( bNewIsLocked ),
mbNewIsPrintable( bNewIsPrintable )
{
- String aString(SdResId(STR_MODIFYLAYER));
+ OUString aString(SdResId(STR_MODIFYLAYER));
SetComment(aString);
}