summaryrefslogtreecommitdiff
path: root/sd/source/core/undoanim.cxx
diff options
context:
space:
mode:
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();
}
}