summaryrefslogtreecommitdiff
path: root/sw/inc/txtfld.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-18 13:44:51 +0200
committerNoel Grandin <noel@peralex.com>2013-09-19 10:54:43 +0200
commit00ccef16bee93d4158c18f70c674b7a2c0be71aa (patch)
tree62703e6425d586db45acb7f66d3be7e92c5e4f2b /sw/inc/txtfld.hxx
parent7160b9533e54132704b7730aa8893972841ce763 (diff)
convert sw/inc/txtfld.hxx from String to OUString
Change-Id: I7d06d6c22d280496a864d656c7a18ac00dd17332
Diffstat (limited to 'sw/inc/txtfld.hxx')
-rw-r--r--sw/inc/txtfld.hxx4
1 files changed, 2 insertions, 2 deletions
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();
}