summaryrefslogtreecommitdiff
path: root/sw/inc/SwAppletImpl.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/SwAppletImpl.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/SwAppletImpl.hxx')
-rw-r--r--sw/inc/SwAppletImpl.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/SwAppletImpl.hxx b/sw/inc/SwAppletImpl.hxx
index cf5bdd97c565..70579083fe2a 100644
--- a/sw/inc/SwAppletImpl.hxx
+++ b/sw/inc/SwAppletImpl.hxx
@@ -45,25 +45,25 @@ class SwApplet_Impl
com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > xApplet;
SvCommandList aCommandList;
SfxItemSet aItemSet;
- ::rtl::OUString sAlt;
+ OUString sAlt;
public:
- static sal_uInt16 GetOptionType( const ::rtl::OUString& rName, sal_Bool bApplet );
+ static sal_uInt16 GetOptionType( const OUString& rName, sal_Bool bApplet );
SwApplet_Impl( SfxItemPool& rPool, sal_uInt16 nWhich1, sal_uInt16 nWhich2 );
SwApplet_Impl( SfxItemSet& rSet ): aItemSet ( rSet) {}
~SwApplet_Impl();
- void CreateApplet( const ::rtl::OUString& rCode, const ::rtl::OUString& rName,
- sal_Bool bMayScript, const ::rtl::OUString& rCodeBase,
- const ::rtl::OUString& rBaseURL );
+ void CreateApplet( const OUString& rCode, const OUString& rName,
+ sal_Bool bMayScript, const OUString& rCodeBase,
+ const OUString& rBaseURL );
#ifdef SOLAR_JAVA
- sal_Bool CreateApplet( const ::rtl::OUString& rBaseURL );
- void AppendParam( const ::rtl::OUString& rName, const ::rtl::OUString& rValue );
+ sal_Bool CreateApplet( const OUString& rBaseURL );
+ void AppendParam( const OUString& rName, const OUString& rValue );
#endif
void FinishApplet();
com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > GetApplet() { return xApplet; }
SfxItemSet& GetItemSet() { return aItemSet; }
- const ::rtl::OUString& GetAltText() const { return sAlt; }
- void SetAltText( const ::rtl::OUString& rAlt ) {sAlt = rAlt;}
+ const OUString& GetAltText() const { return sAlt; }
+ void SetAltText( const OUString& rAlt ) {sAlt = rAlt;}
};
#endif