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 /svtools | |
parent | 28062c62818ce40c17fb67b480612f8bb9bcd522 (diff) |
convert GetComment family to rtl::OUString
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/edit/textundo.cxx | 5 | ||||
-rw-r--r-- | svtools/source/edit/textundo.hxx | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/svtools/source/edit/textundo.cxx b/svtools/source/edit/textundo.cxx index 2de942f57c96..1b82d0f1025b 100644 --- a/svtools/source/edit/textundo.cxx +++ b/svtools/source/edit/textundo.cxx @@ -117,10 +117,9 @@ TextUndo::~TextUndo() { } -XubString TextUndo::GetComment() const +rtl::OUString TextUndo::GetComment() const { -// return mpTextEngine->GetUndoComment( this ); - return String(); + return rtl::OUString(); } void TextUndo::SetSelection( const TextSelection& rSel ) diff --git a/svtools/source/edit/textundo.hxx b/svtools/source/edit/textundo.hxx index b8189eaa9711..f86f87763097 100644 --- a/svtools/source/edit/textundo.hxx +++ b/svtools/source/edit/textundo.hxx @@ -77,7 +77,7 @@ public: virtual void Undo() = 0; virtual void Redo() = 0; - virtual XubString GetComment() const; + virtual rtl::OUString GetComment() const; }; #endif // _TEXTUNDO_HXX |