diff options
author | MÁTÉ Gergely <sportember@caesar.elte.hu> | 2013-07-27 00:53:45 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-28 21:20:10 +0000 |
commit | af079c886f9643d539a16065dc4e96d70fac422b (patch) | |
tree | fa20253acd70b79b5ed3a9992039eef56e00dd4b /sd/inc | |
parent | ad94820ed7bdfb9353d02345e70e02cf2c518893 (diff) |
Converting to OUString in sd in sdundo.hxx and related files.
Change-Id: I5e9c1122ccfe9dfadfb36c4ab419c429c2bda6d0
Reviewed-on: https://gerrit.libreoffice.org/5135
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/sdundo.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/sdundo.hxx b/sd/inc/sdundo.hxx index 2035fa6d934b..3167c414ed51 100644 --- a/sd/inc/sdundo.hxx +++ b/sd/inc/sdundo.hxx @@ -33,13 +33,13 @@ public: : mpDoc(pSdDrawDocument) {} virtual ~SdUndoAction() {} - void SetComment(String& rStr) { maComment = rStr; } - virtual OUString GetComment() const { return maComment; } + void SetComment(OUString& rStr) { maComment = rStr; } + virtual OUString GetComment() const { return maComment; } virtual SdUndoAction* Clone() const { return NULL; } protected: SdDrawDocument* mpDoc; - String maComment; + OUString maComment; }; #endif // _SD_SDUNDO_HXX |