diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-02 10:47:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-02 14:53:50 +0100 |
commit | 60722c31373daaaf195dbf1ebd3414ca0db696c3 (patch) | |
tree | 486d0c23e30b81b601a487eeb510df814800e794 /sw/inc/ftninfo.hxx | |
parent | e9a467cafbffb380c54e90b24f9ee20cd4adc7e8 (diff) |
convert Suffix/Prefix to rtl::OUString
Diffstat (limited to 'sw/inc/ftninfo.hxx')
-rw-r--r-- | sw/inc/ftninfo.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/ftninfo.hxx b/sw/inc/ftninfo.hxx index 95b626cc600a..cccd6f76838d 100644 --- a/sw/inc/ftninfo.hxx +++ b/sw/inc/ftninfo.hxx @@ -42,8 +42,8 @@ class SW_DLLPUBLIC SwEndNoteInfo : public SwClient { SwDepend aPageDescDep; SwDepend aCharFmtDep, aAnchorCharFmtDep; - String sPrefix; - String sSuffix; + rtl::OUString sPrefix; + rtl::OUString sSuffix; protected: bool m_bEndNote; virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew ); @@ -74,11 +74,11 @@ public: SwEndNoteInfo( SwTxtFmtColl *pTxtColl = 0); SwEndNoteInfo(const SwEndNoteInfo&); - const String& GetPrefix() const { return sPrefix; } - const String& GetSuffix() const { return sSuffix; } + const rtl::OUString& GetPrefix() const { return sPrefix; } + const rtl::OUString& GetSuffix() const { return sSuffix; } - void SetPrefix(const String& rSet) { sPrefix = rSet; } - void SetSuffix(const String& rSet) { sSuffix = rSet; } + void SetPrefix(const rtl::OUString& rSet) { sPrefix = rSet; } + void SetSuffix(const rtl::OUString& rSet) { sSuffix = rSet; } void ReleaseCollection() { if ( GetRegisteredInNonConst() ) GetRegisteredInNonConst()->Remove( this ); } }; |