From 00ccef16bee93d4158c18f70c674b7a2c0be71aa Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 18 Sep 2013 13:44:51 +0200 Subject: convert sw/inc/txtfld.hxx from String to OUString Change-Id: I7d06d6c22d280496a864d656c7a18ac00dd17332 --- sw/inc/txtfld.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/inc/txtfld.hxx') diff --git a/sw/inc/txtfld.hxx b/sw/inc/txtfld.hxx index b12be7a501e1..55aab0fd6673 100644 --- a/sw/inc/txtfld.hxx +++ b/sw/inc/txtfld.hxx @@ -28,7 +28,7 @@ class SwTxtNode; class SwTxtFld : public SwTxtAttr { - mutable String m_aExpand; + mutable OUString m_aExpand; SwTxtNode * m_pTxtNode; public: @@ -62,7 +62,7 @@ inline SwTxtNode& SwTxtFld::GetTxtNode() const inline void SwTxtFld::ExpandAlways() { - m_aExpand += ' '; + m_aExpand += " "; Expand(); } -- cgit