summaryrefslogtreecommitdiff
path: root/sw/inc/hints.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2013-08-18 00:32:54 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2013-08-18 00:32:54 +0200
commit63b86dfdf84edfca0b49d97687e4759dd8d8efff (patch)
treead818c4d9b6173eadeb66e054593925a6c7a6522 /sw/inc/hints.hxx
parent8aee44c1814ae7c1af14e942cf0513e1612a82d9 (diff)
String to OUString
Change-Id: I1de0d79ed3e9b3fd6b6ae9c303d5e502780bb568
Diffstat (limited to 'sw/inc/hints.hxx')
-rw-r--r--sw/inc/hints.hxx8
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