diff options
Diffstat (limited to 'dbaccess/source/ui/inc/undosqledit.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/undosqledit.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/undosqledit.hxx b/dbaccess/source/ui/inc/undosqledit.hxx index 2d913de33dfe..0878a7d378b2 100644 --- a/dbaccess/source/ui/inc/undosqledit.hxx +++ b/dbaccess/source/ui/inc/undosqledit.hxx @@ -30,7 +30,7 @@ namespace dbaui { protected: OSqlEdit* m_pOwner; - String m_strNextText; + OUString m_strNextText; virtual void Undo() { ToggleText(); } virtual void Redo() { ToggleText(); } @@ -39,7 +39,7 @@ namespace dbaui public: OSqlEditUndoAct(OSqlEdit* pEdit) : OCommentUndoAction(STR_QUERY_UNDO_MODIFYSQLEDIT), m_pOwner(pEdit) { } - void SetOriginalText(const String& strText) { m_strNextText =strText; } + void SetOriginalText(const OUString& strText) { m_strNextText =strText; } }; } #endif // DBAUI_UNDOSQLEDIT_HXX |