summaryrefslogtreecommitdiff
path: root/sd/source/core/undoanim.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-05-14 08:34:58 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-05-14 14:34:09 +0100
commitc182a752412aab354aaf02ee0c75b7cb1ee35d66 (patch)
treee4ee080ed6a7c5f665a33c52ad9d1e3a56b6031b /sd/source/core/undoanim.cxx
parent28062c62818ce40c17fb67b480612f8bb9bcd522 (diff)
convert GetComment family to rtl::OUString
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
Diffstat (limited to 'sd/source/core/undoanim.cxx')
-rw-r--r--sd/source/core/undoanim.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/core/undoanim.cxx b/sd/source/core/undoanim.cxx
index 79f6ede05ab3..f20b83102f96 100644
--- a/sd/source/core/undoanim.cxx
+++ b/sd/source/core/undoanim.cxx
@@ -115,9 +115,9 @@ void UndoAnimation::Redo()
}
}
-String UndoAnimation::GetComment() const
+rtl::OUString UndoAnimation::GetComment() const
{
- return String(SdResId(STR_UNDO_ANIMATION));
+ return SdResId(STR_UNDO_ANIMATION).toString();
}
struct UndoAnimationPathImpl
@@ -193,9 +193,9 @@ void UndoAnimationPath::Redo()
}
}
-String UndoAnimationPath::GetComment() const
+rtl::OUString UndoAnimationPath::GetComment() const
{
- return String(SdResId(STR_UNDO_ANIMATION));
+ return SdResId(STR_UNDO_ANIMATION).toString();
}
struct UndoTransitionImpl
@@ -284,9 +284,9 @@ void UndoTransition::Redo()
mpImpl->mpPage->mbStopSound = mpImpl->mbNewStopSound;
}
-String UndoTransition::GetComment() const
+rtl::OUString UndoTransition::GetComment() const
{
- return String(SdResId(STR_UNDO_SLIDE_PARAMS));
+ return SdResId(STR_UNDO_SLIDE_PARAMS).toString();
}
}