From 1946794ae09ba732022fe6a74ea45e304ab70b84 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Sun, 7 Apr 2013 12:06:47 +0200 Subject: 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 --- sw/inc/fmtftntx.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sw/inc/fmtftntx.hxx') diff --git a/sw/inc/fmtftntx.hxx b/sw/inc/fmtftntx.hxx index 6ae1e824d98d..11258afeeee4 100644 --- a/sw/inc/fmtftntx.hxx +++ b/sw/inc/fmtftntx.hxx @@ -37,8 +37,8 @@ enum SwFtnEndPosEnum class SW_DLLPUBLIC SwFmtFtnEndAtTxtEnd : public SfxEnumItem { - rtl::OUString sPrefix; - rtl::OUString sSuffix; + OUString sPrefix; + OUString sSuffix; SvxNumberType aFmt; sal_uInt16 nOffset; @@ -78,11 +78,11 @@ public: sal_uInt16 GetOffset() const { return nOffset; } void SetOffset( sal_uInt16 nOff ) { nOffset = nOff; } - const rtl::OUString& GetPrefix() const { return sPrefix; } - void SetPrefix(const rtl::OUString& rSet) { sPrefix = rSet; } + const OUString& GetPrefix() const { return sPrefix; } + void SetPrefix(const OUString& rSet) { sPrefix = rSet; } - const rtl::OUString& GetSuffix() const { return sSuffix; } - void SetSuffix(const rtl::OUString& rSet) { sSuffix = rSet; } + const OUString& GetSuffix() const { return sSuffix; } + void SetSuffix(const OUString& rSet) { sSuffix = rSet; } }; class SW_DLLPUBLIC SwFmtFtnAtTxtEnd : public SwFmtFtnEndAtTxtEnd -- cgit