summaryrefslogtreecommitdiff
path: root/forms/source/inc/urltransformer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/inc/urltransformer.hxx')
-rw-r--r--forms/source/inc/urltransformer.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/inc/urltransformer.hxx b/forms/source/inc/urltransformer.hxx
index 527f30b1ce77..3ee248f8e1a1 100644
--- a/forms/source/inc/urltransformer.hxx
+++ b/forms/source/inc/urltransformer.hxx
@@ -32,29 +32,29 @@ namespace frm
class UrlTransformer
{
private:
- ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >
+ css::uno::Reference< css::uno::XComponentContext >
m_xORB;
- mutable ::com::sun::star::uno::Reference< ::com::sun::star::util::XURLTransformer >
+ mutable css::uno::Reference< css::util::XURLTransformer >
m_xTransformer;
mutable bool m_bTriedToCreateTransformer;
public:
- UrlTransformer( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxORB );
+ UrlTransformer( const css::uno::Reference< css::uno::XComponentContext >& _rxORB );
/** returns an URL object for the given URL string
*/
- ::com::sun::star::util::URL
+ css::util::URL
getStrictURL( const OUString& _rURL ) const;
/** returns an URL object for the given URL ASCII string
*/
- ::com::sun::star::util::URL
+ css::util::URL
getStrictURLFromAscii( const sal_Char* _pAsciiURL ) const;
/** parses a given URL smartly, with a protocol given by ASCII string
*/
void
- parseSmartWithAsciiProtocol( ::com::sun::star::util::URL& _rURL, const sal_Char* _pAsciiURL ) const;
+ parseSmartWithAsciiProtocol( css::util::URL& _rURL, const sal_Char* _pAsciiURL ) const;
private:
/** ensures that we have an URLTransformer instance in <member>m_xTransformer</member>