[Libreoffice-commits] core.git: sw/inc

Matteo Casalin matteo.casalin at yahoo.com
Sat Aug 17 15:33:47 PDT 2013


 sw/inc/hints.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 63b86dfdf84edfca0b49d97687e4759dd8d8efff
Author: Matteo Casalin <matteo.casalin at yahoo.com>
Date:   Sun Aug 18 00:32:54 2013 +0200

    String to OUString
    
    Change-Id: I1de0d79ed3e9b3fd6b6ae9c303d5e502780bb568

diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx
index a470de9..9907d60 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


More information about the Libreoffice-commits mailing list