From e1b8dfda24c75e91d8ebced7a4022b78ee7fca25 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Sat, 10 Aug 2013 16:30:45 +0400 Subject: String->OUString Change-Id: Ifda8c7453ecb40abdae8d63656b8742c80691b98 --- sd/source/ui/view/unmodpg.cxx | 46 ++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 25 deletions(-) (limited to 'sd/source/ui/view/unmodpg.cxx') diff --git a/sd/source/ui/view/unmodpg.cxx b/sd/source/ui/view/unmodpg.cxx index f47ec21b917f..7ff176aff7f5 100644 --- a/sd/source/ui/view/unmodpg.cxx +++ b/sd/source/ui/view/unmodpg.cxx @@ -43,7 +43,7 @@ TYPEINIT1(ModifyPageUndoAction, SdUndoAction); ModifyPageUndoAction::ModifyPageUndoAction( SdDrawDocument* pTheDoc, SdPage* pThePage, - String aTheNewName, + OUString aTheNewName, AutoLayout eTheNewAutoLayout, sal_Bool bTheNewBckgrndVisible, sal_Bool bTheNewBckgrndObjsVisible) @@ -63,15 +63,15 @@ ModifyPageUndoAction::ModifyPageUndoAction( { maOldName = mpPage->GetName(); SdrLayerAdmin& rLayerAdmin = mpDoc->GetLayerAdmin(); - sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRND)), sal_False); - sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRNDOBJ)), sal_False); + sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRND), sal_False); + sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRNDOBJ), sal_False); SetOfByte aVisibleLayers = mpPage->TRG_GetMasterPageVisibleLayers(); mbOldBckgrndVisible = aVisibleLayers.IsSet(aBckgrnd); mbOldBckgrndObjsVisible = aVisibleLayers.IsSet(aBckgrndObj); } - maComment = String(SdResId(STR_UNDO_MODIFY_PAGE)); + maComment = SD_RESSTR(STR_UNDO_MODIFY_PAGE); } #include @@ -106,8 +106,8 @@ void ModifyPageUndoAction::Undo() } SdrLayerAdmin& rLayerAdmin = mpDoc->GetLayerAdmin(); - sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRND)), sal_False); - sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRNDOBJ)), sal_False); + sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRND), sal_False); + sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRNDOBJ), sal_False); SetOfByte aVisibleLayers; aVisibleLayers.Set(aBckgrnd, mbOldBckgrndVisible); aVisibleLayers.Set(aBckgrndObj, mbOldBckgrndObjsVisible); @@ -150,8 +150,8 @@ void ModifyPageUndoAction::Redo() } SdrLayerAdmin& rLayerAdmin = mpDoc->GetLayerAdmin(); - sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRND)), sal_False); - sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(String(SdResId(STR_LAYER_BCKGRNDOBJ)), sal_False); + sal_uInt8 aBckgrnd = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRND), sal_False); + sal_uInt8 aBckgrndObj = rLayerAdmin.GetLayerID(SD_RESSTR(STR_LAYER_BCKGRNDOBJ), sal_False); SetOfByte aVisibleLayers; aVisibleLayers.Set(aBckgrnd, mbNewBckgrndVisible); aVisibleLayers.Set(aBckgrndObj, mbNewBckgrndObjsVisible); @@ -174,34 +174,30 @@ OUString ModifyPageUndoAction::GetComment() const return maComment; } -// -------------------------------------------------------------------- -RenameLayoutTemplateUndoAction::RenameLayoutTemplateUndoAction( SdDrawDocument* pDocument, const String& rOldLayoutName, const String& rNewLayoutName ) -: SdUndoAction(pDocument) -, maOldName( rOldLayoutName ) -, maNewName( rNewLayoutName ) -, maComment(SdResId(STR_TITLE_RENAMESLIDE)) +RenameLayoutTemplateUndoAction::RenameLayoutTemplateUndoAction( + SdDrawDocument* pDocument, + const OUString& rOldLayoutName, + const OUString& rNewLayoutName) + : SdUndoAction(pDocument) + , maOldName(rOldLayoutName) + , maNewName(rNewLayoutName) + , maComment(SD_RESSTR(STR_TITLE_RENAMESLIDE)) { - sal_uInt16 nPos = maOldName.SearchAscii( SD_LT_SEPARATOR ); - if( nPos != (sal_uInt16)-1 ) - maOldName.Erase(nPos); + sal_Int32 nPos = maOldName.indexOf(SD_LT_SEPARATOR); + if (nPos != -1) + maOldName = maOldName.copy(0, nPos); } void RenameLayoutTemplateUndoAction::Undo() { - String aLayoutName( maNewName ); - aLayoutName.AppendAscii( SD_LT_SEPARATOR ); - aLayoutName.Append( String(SdResId(STR_LAYOUT_OUTLINE))) ; - + OUString aLayoutName(maNewName + SD_LT_SEPARATOR + SD_RESSTR(STR_LAYOUT_OUTLINE)); mpDoc->RenameLayoutTemplate( aLayoutName, maOldName ); } void RenameLayoutTemplateUndoAction::Redo() { - String aLayoutName( maOldName ); - aLayoutName.AppendAscii( SD_LT_SEPARATOR ); - aLayoutName.Append( String(SdResId(STR_LAYOUT_OUTLINE))) ; - + OUString aLayoutName(maOldName + SD_LT_SEPARATOR + SD_RESSTR(STR_LAYOUT_OUTLINE)); mpDoc->RenameLayoutTemplate( aLayoutName, maNewName ); } -- cgit