Kaydet (Commit) d6f8e16b authored tarafından Noel Grandin's avatar Noel Grandin

convert sd/../unoaprms.hxx from String to OUString

Change-Id: I579cc101902027813ebd09c9a0e6adffb5b9e5a1
üst a8ffc2a5
...@@ -62,14 +62,14 @@ class SdAnimationPrmsUndoAction : public SdUndoAction ...@@ -62,14 +62,14 @@ class SdAnimationPrmsUndoAction : public SdUndoAction
Color aNewDimColor; Color aNewDimColor;
Color aOldBlueScreen; Color aOldBlueScreen;
Color aNewBlueScreen; Color aNewBlueScreen;
String aOldSoundFile; OUString aOldSoundFile;
String aNewSoundFile; OUString aNewSoundFile;
SdrPathObj* pOldPathObj; SdrPathObj* pOldPathObj;
SdrPathObj* pNewPathObj; SdrPathObj* pNewPathObj;
::com::sun::star::presentation::ClickAction eOldClickAction; ::com::sun::star::presentation::ClickAction eOldClickAction;
::com::sun::star::presentation::ClickAction eNewClickAction; ::com::sun::star::presentation::ClickAction eNewClickAction;
String aOldBookmark; OUString aOldBookmark;
String aNewBookmark; OUString aNewBookmark;
sal_Bool bOldInvisibleInPres; sal_Bool bOldInvisibleInPres;
sal_Bool bNewInvisibleInPres; sal_Bool bNewInvisibleInPres;
sal_uInt16 nOldVerb; sal_uInt16 nOldVerb;
...@@ -104,7 +104,7 @@ public: ...@@ -104,7 +104,7 @@ public:
{ bOldDimHide = bTheOldDimHide; bNewDimHide = bTheNewDimHide; } { bOldDimHide = bTheOldDimHide; bNewDimHide = bTheNewDimHide; }
void SetSoundOn(sal_Bool bTheOldSoundOn, sal_Bool bTheNewSoundOn) void SetSoundOn(sal_Bool bTheOldSoundOn, sal_Bool bTheNewSoundOn)
{ bOldSoundOn = bTheOldSoundOn; bNewSoundOn = bTheNewSoundOn; } { bOldSoundOn = bTheOldSoundOn; bNewSoundOn = bTheNewSoundOn; }
void SetSound(String aTheOldSound, String aTheNewSound) void SetSound(String aTheOldSound, OUString aTheNewSound)
{ aOldSoundFile = aTheOldSound; aNewSoundFile = aTheNewSound; } { aOldSoundFile = aTheOldSound; aNewSoundFile = aTheNewSound; }
void SetBlueScreen(Color aTheOldBlueScreen, Color aTheNewBlueScreen) void SetBlueScreen(Color aTheOldBlueScreen, Color aTheNewBlueScreen)
{ aOldBlueScreen = aTheOldBlueScreen; aNewBlueScreen = aTheNewBlueScreen; } { aOldBlueScreen = aTheOldBlueScreen; aNewBlueScreen = aTheNewBlueScreen; }
...@@ -114,7 +114,7 @@ public: ...@@ -114,7 +114,7 @@ public:
{ pOldPathObj = pTheOldPath; pNewPathObj = pTheNewPath; } { pOldPathObj = pTheOldPath; pNewPathObj = pTheNewPath; }
void SetClickAction(::com::sun::star::presentation::ClickAction eTheOldAction, ::com::sun::star::presentation::ClickAction eTheNewAction) void SetClickAction(::com::sun::star::presentation::ClickAction eTheOldAction, ::com::sun::star::presentation::ClickAction eTheNewAction)
{ eOldClickAction = eTheOldAction; eNewClickAction = eTheNewAction; } { eOldClickAction = eTheOldAction; eNewClickAction = eTheNewAction; }
void SetBookmark(String aTheOldBookmark, String aTheNewBookmark) void SetBookmark(String aTheOldBookmark, OUString aTheNewBookmark)
{ aOldBookmark = aTheOldBookmark; aNewBookmark = aTheNewBookmark; } { aOldBookmark = aTheOldBookmark; aNewBookmark = aTheNewBookmark; }
void SetInvisibleInPres(sal_Bool bTheOldInvisibleInPres, sal_Bool bTheNewInvisibleInPres) void SetInvisibleInPres(sal_Bool bTheOldInvisibleInPres, sal_Bool bTheNewInvisibleInPres)
{ bOldInvisibleInPres = bTheOldInvisibleInPres; bNewInvisibleInPres = bTheNewInvisibleInPres; } { bOldInvisibleInPres = bTheOldInvisibleInPres; bNewInvisibleInPres = bTheNewInvisibleInPres; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment