diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-07 16:52:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-08 12:02:36 +0000 |
commit | e73b23562911c15e9996eea70d3aff4983a2018c (patch) | |
tree | 2982c0dfc0d121d9be5192acca84eb49289e4670 /sw/inc/reffld.hxx | |
parent | 68f7b7a37309f577da1b868ee012246449133c01 (diff) |
tidy up WW8FormulaControl, with knock on results elsewhere
Diffstat (limited to 'sw/inc/reffld.hxx')
-rw-r--r-- | sw/inc/reffld.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/reffld.hxx b/sw/inc/reffld.hxx index 5db6268d5ce9..5d54b6dc4c3e 100644 --- a/sw/inc/reffld.hxx +++ b/sw/inc/reffld.hxx @@ -90,7 +90,7 @@ public: class SW_DLLPUBLIC SwGetRefField : public SwField { private: - String sSetRefName; + rtl::OUString sSetRefName; String sTxt; sal_uInt16 nSubType; sal_uInt16 nSeqNo; @@ -111,7 +111,7 @@ public: virtual String GetFieldName() const; - const String& GetSetRefName() const { return sSetRefName; } + const rtl::OUString& GetSetRefName() const { return sSetRefName; } // #i81002# // The <SwTxtFld> instance, which represents the text attribute for the @@ -141,10 +141,10 @@ public: void SetSeqNo( sal_uInt16 n ) { nSeqNo = n; } // Name of reference. - virtual const String& GetPar1() const; - virtual void SetPar1(const String& rStr); + virtual const rtl::OUString& GetPar1() const; + virtual void SetPar1(const rtl::OUString& rStr); - virtual String GetPar2() const; + virtual rtl::OUString GetPar2() const; virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt16 nWhichId ) const; virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt16 nWhichId ); |