diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-18 00:32:54 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-18 00:32:54 +0200 |
commit | 63b86dfdf84edfca0b49d97687e4759dd8d8efff (patch) | |
tree | ad818c4d9b6173eadeb66e054593925a6c7a6522 /sw | |
parent | 8aee44c1814ae7c1af14e942cf0513e1612a82d9 (diff) |
String to OUString
Change-Id: I1de0d79ed3e9b3fd6b6ae9c303d5e502780bb568
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/hints.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx index a470de9b7645..9907d6044932 100644 --- a/sw/inc/hints.hxx +++ b/sw/inc/hints.hxx @@ -229,13 +229,13 @@ public: class SwStringMsgPoolItem : public SwMsgPoolItem { - String sStr; + OUString m_sStr; public: - const String& GetString() const { return sStr; } + OUString GetString() const { return m_sStr; } - SwStringMsgPoolItem( sal_uInt16 nId, const String& rStr ) - : SwMsgPoolItem( nId ), sStr( rStr ) + SwStringMsgPoolItem( sal_uInt16 nId, const OUString& rStr ) + : SwMsgPoolItem( nId ), m_sStr( rStr ) {} }; #endif |