summaryrefslogtreecommitdiff
path: root/sw/inc/ftninfo.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /sw/inc/ftninfo.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'sw/inc/ftninfo.hxx')
-rw-r--r--sw/inc/ftninfo.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/ftninfo.hxx b/sw/inc/ftninfo.hxx
index 095b09e57600..c88e0119b20d 100644
--- a/sw/inc/ftninfo.hxx
+++ b/sw/inc/ftninfo.hxx
@@ -33,8 +33,8 @@ class SW_DLLPUBLIC SwEndNoteInfo : public SwClient
{
SwDepend aPageDescDep;
SwDepend aCharFmtDep, aAnchorCharFmtDep;
- rtl::OUString sPrefix;
- rtl::OUString sSuffix;
+ OUString sPrefix;
+ OUString sSuffix;
protected:
bool m_bEndNote;
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew );
@@ -65,11 +65,11 @@ public:
SwEndNoteInfo( SwTxtFmtColl *pTxtColl = 0);
SwEndNoteInfo(const SwEndNoteInfo&);
- const rtl::OUString& GetPrefix() const { return sPrefix; }
- const rtl::OUString& GetSuffix() const { return sSuffix; }
+ const OUString& GetPrefix() const { return sPrefix; }
+ const OUString& GetSuffix() const { return sSuffix; }
- void SetPrefix(const rtl::OUString& rSet) { sPrefix = rSet; }
- void SetSuffix(const rtl::OUString& rSet) { sSuffix = rSet; }
+ void SetPrefix(const OUString& rSet) { sPrefix = rSet; }
+ void SetSuffix(const OUString& rSet) { sSuffix = rSet; }
void ReleaseCollection() { if ( GetRegisteredInNonConst() ) GetRegisteredInNonConst()->Remove( this ); }
};