summaryrefslogtreecommitdiff
path: root/sd/inc
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/inc
parent28062c62818ce40c17fb67b480612f8bb9bcd522 (diff)
convert GetComment family to rtl::OUString
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/sdundo.hxx2
-rw-r--r--sd/inc/undoanim.hxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/sd/inc/sdundo.hxx b/sd/inc/sdundo.hxx
index bbf39e2076b0..6356dd45b9a1 100644
--- a/sd/inc/sdundo.hxx
+++ b/sd/inc/sdundo.hxx
@@ -43,7 +43,7 @@ public:
virtual ~SdUndoAction() {}
void SetComment(String& rStr) { maComment = rStr; }
- virtual String GetComment() const { return maComment; }
+ virtual rtl::OUString GetComment() const { return maComment; }
virtual SdUndoAction* Clone() const { return NULL; }
protected:
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index 9af802794671..5bb678c63e09 100644
--- a/sd/inc/undoanim.hxx
+++ b/sd/inc/undoanim.hxx
@@ -51,7 +51,7 @@ public:
virtual void Undo();
virtual void Redo();
- virtual String GetComment() const;
+ virtual rtl::OUString GetComment() const;
private:
UndoAnimationImpl* mpImpl;
@@ -67,7 +67,7 @@ public:
virtual void Undo();
virtual void Redo();
- virtual String GetComment() const;
+ virtual rtl::OUString GetComment() const;
private:
UndoAnimationPathImpl* mpImpl;
@@ -84,7 +84,7 @@ public:
virtual void Undo();
virtual void Redo();
- virtual String GetComment() const;
+ virtual rtl::OUString GetComment() const;
private:
UndoTransitionImpl* mpImpl;