diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-10 15:32:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-15 12:25:37 +0200 |
commit | 031035bb843a75d64029e0183834f508aebcac98 (patch) | |
tree | 18879a6c1d59d1024db2696a858a3908049381a3 /sw/inc/fmtcol.hxx | |
parent | 440d1c137a9da117db4cc151b522e07284162acc (diff) |
convert sw/inc/fmtcol.hxx from String to OUString
Change-Id: I534a97f8c787b269e31d3fc8c786c745266a9a18
Diffstat (limited to 'sw/inc/fmtcol.hxx')
-rw-r--r-- | sw/inc/fmtcol.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/fmtcol.hxx b/sw/inc/fmtcol.hxx index 0b90a786fb12..8b89070aa40d 100644 --- a/sw/inc/fmtcol.hxx +++ b/sw/inc/fmtcol.hxx @@ -190,7 +190,7 @@ class SW_DLLPUBLIC SwCollCondition : public SwClient union { sal_uLong nSubCondition; - String* pFldExpression; + OUString* pFldExpression; } aSubCondition; public: @@ -199,7 +199,7 @@ public: SwCollCondition( SwTxtFmtColl* pColl, sal_uLong nMasterCond, sal_uLong nSubCond = 0 ); SwCollCondition( SwTxtFmtColl* pColl, sal_uLong nMasterCond, - const String& rSubExp ); + const OUString& rSubExp ); virtual ~SwCollCondition(); /// @@@ public copy ctor, but no copy assignment? @@ -215,7 +215,7 @@ public: sal_uLong GetCondition() const { return nCondition; } sal_uLong GetSubCondition() const { return aSubCondition.nSubCondition; } - const String* GetFldExpression() const + const OUString* GetFldExpression() const { return aSubCondition.pFldExpression; } void SetCondition( sal_uLong nCond, sal_uLong nSubCond ); @@ -235,7 +235,7 @@ protected: SwTxtFmtColl* pDerFrom = 0 ) : SwTxtFmtColl( rPool, pFmtCollName, pDerFrom, RES_CONDTXTFMTCOLL ) {} - SwConditionTxtFmtColl( SwAttrPool& rPool, const String &rFmtCollName, + SwConditionTxtFmtColl( SwAttrPool& rPool, const OUString &rFmtCollName, SwTxtFmtColl* pDerFrom = 0 ) : SwTxtFmtColl( rPool, rFmtCollName, pDerFrom, RES_CONDTXTFMTCOLL ) {} |