summaryrefslogtreecommitdiff
path: root/scripting/source/provider/URIHelper.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 /scripting/source/provider/URIHelper.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 'scripting/source/provider/URIHelper.hxx')
-rw-r--r--scripting/source/provider/URIHelper.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/scripting/source/provider/URIHelper.hxx b/scripting/source/provider/URIHelper.hxx
index 2ceb3d875fb7..17096d8ae9ae 100644
--- a/scripting/source/provider/URIHelper.hxx
+++ b/scripting/source/provider/URIHelper.hxx
@@ -45,15 +45,15 @@ private:
css::uno::Reference< css::ucb::XSimpleFileAccess3 > m_xSimpleFileAccess;
css::uno::Reference<css::uri::XUriReferenceFactory> m_xUriReferenceFactory;
- ::rtl::OUString m_sLanguage;
- ::rtl::OUString m_sLocation;
- ::rtl::OUString m_sBaseURI;
+ OUString m_sLanguage;
+ OUString m_sLocation;
+ OUString m_sBaseURI;
- ::rtl::OUString SCRIPTS_PART;
+ OUString SCRIPTS_PART;
bool initBaseURI();
- ::rtl::OUString getLanguagePart(const ::rtl::OUString& rStorageURI);
- ::rtl::OUString getLanguagePath(const ::rtl::OUString& rLanguagePart);
+ OUString getLanguagePart(const OUString& rStorageURI);
+ OUString getLanguagePath(const OUString& rLanguagePart);
public:
@@ -67,29 +67,29 @@ public:
initialize( const css::uno::Sequence < css::uno::Any > & args )
throw ( css::uno::Exception, css::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL
+ virtual OUString SAL_CALL
getRootStorageURI()
throw ( ::com::sun::star::uno::RuntimeException );
- virtual ::rtl::OUString SAL_CALL
- getScriptURI( const ::rtl::OUString& rStorageURI )
+ virtual OUString SAL_CALL
+ getScriptURI( const OUString& rStorageURI )
throw( css::lang::IllegalArgumentException,
css::uno::RuntimeException );
- virtual ::rtl::OUString SAL_CALL
- getStorageURI( const ::rtl::OUString& rScriptURI )
+ virtual OUString SAL_CALL
+ getStorageURI( const OUString& rScriptURI )
throw( css::lang::IllegalArgumentException,
css::uno::RuntimeException );
- virtual ::rtl::OUString SAL_CALL
+ virtual OUString SAL_CALL
getImplementationName()
throw( css::uno::RuntimeException );
virtual sal_Bool SAL_CALL
- supportsService( const ::rtl::OUString& ServiceName )
+ supportsService( const OUString& ServiceName )
throw( css::uno::RuntimeException );
- virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL
+ virtual css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames()
throw( css::uno::RuntimeException );
};