diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-14 08:34:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-14 14:34:09 +0100 |
commit | c182a752412aab354aaf02ee0c75b7cb1ee35d66 (patch) | |
tree | e4ee080ed6a7c5f665a33c52ad9d1e3a56b6031b /sd/inc/sdundo.hxx | |
parent | 28062c62818ce40c17fb67b480612f8bb9bcd522 (diff) |
convert GetComment family to rtl::OUString
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
Diffstat (limited to 'sd/inc/sdundo.hxx')
-rw-r--r-- | sd/inc/sdundo.hxx | 2 |
1 files changed, 1 insertions, 1 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: |