Kaydet (Commit) 63b86dfd authored tarafından Matteo Casalin's avatar Matteo Casalin

String to OUString

Change-Id: I1de0d79ed3e9b3fd6b6ae9c303d5e502780bb568
üst 8aee44c1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment