[Libreoffice-commits] core.git: framework/source

Matúš Kukan matus.kukan at collabora.com
Fri Jan 17 04:01:48 PST 2014


 framework/source/services/urltransformer.cxx |   22 ++++++++--------------
 1 file changed, 8 insertions(+), 14 deletions(-)

New commits:
commit 9e18f7e3cfec960b788eb5df3b53daf9efd092ab
Author: Matúš Kukan <matus.kukan at collabora.com>
Date:   Fri Jan 17 12:56:23 2014 +0100

    disambiguate URLTransformer
    
    Change-Id: I27a80a7593889105c7a75c04de08eebe28e5c541

diff --git a/framework/source/services/urltransformer.cxx b/framework/source/services/urltransformer.cxx
index a534639..d8aaacf 100644
--- a/framework/source/services/urltransformer.cxx
+++ b/framework/source/services/urltransformer.cxx
@@ -30,12 +30,6 @@
 #include <com/sun/star/lang/XServiceInfo.hpp>
 #include <com/sun/star/uno/XComponentContext.hpp>
 
-using namespace ::osl;
-using namespace ::cppu;
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::util;
-
 namespace {
 
 class URLTransformer : public ::cppu::WeakImplHelper2< css::util::XURLTransformer, css::lang::XServiceInfo>
@@ -80,7 +74,7 @@ public:
 
 namespace
 {
-    void lcl_ParserHelper(INetURLObject& _rParser,URL& _rURL,bool _bUseIntern)
+    void lcl_ParserHelper(INetURLObject& _rParser, css::util::URL& _rURL,bool _bUseIntern)
     {
         // Get all information about this URL.
         _rURL.Protocol  = INetURLObject::GetScheme( _rParser.GetProtocol() );
@@ -132,7 +126,7 @@ namespace
 //*****************************************************************************************************************
 //  XURLTransformer
 //*****************************************************************************************************************
-sal_Bool SAL_CALL URLTransformer::parseStrict( URL& aURL ) throw( RuntimeException )
+sal_Bool SAL_CALL URLTransformer::parseStrict( css::util::URL& aURL ) throw( css::uno::RuntimeException )
 {
     // Safe impossible cases.
     if  (( &aURL                        ==  NULL    )   ||
@@ -185,8 +179,8 @@ sal_Bool SAL_CALL URLTransformer::parseStrict( URL& aURL ) throw( RuntimeExcepti
 //*****************************************************************************************************************
 //  XURLTransformer
 //*****************************************************************************************************************
-sal_Bool SAL_CALL URLTransformer::parseSmart(           URL&        aURL            ,
-                                                const   OUString&    sSmartProtocol  ) throw( RuntimeException )
+sal_Bool SAL_CALL URLTransformer::parseSmart( css::util::URL& aURL,
+                                                const   OUString&    sSmartProtocol  ) throw( css::uno::RuntimeException )
 {
     // Safe impossible cases.
     if  (( &aURL                            ==  NULL    ) ||
@@ -241,7 +235,7 @@ sal_Bool SAL_CALL URLTransformer::parseSmart(           URL&        aURL
 //*****************************************************************************************************************
 //  XURLTransformer
 //*****************************************************************************************************************
-sal_Bool SAL_CALL URLTransformer::assemble( URL& aURL ) throw( RuntimeException )
+sal_Bool SAL_CALL URLTransformer::assemble( css::util::URL& aURL ) throw( css::uno::RuntimeException )
 {
     // Safe impossible cases.
     if  ( &aURL == NULL )
@@ -304,8 +298,8 @@ sal_Bool SAL_CALL URLTransformer::assemble( URL& aURL ) throw( RuntimeException
 //*****************************************************************************************************************
 //  XURLTransformer
 //*****************************************************************************************************************
-OUString SAL_CALL URLTransformer::getPresentation(   const   URL&        aURL            ,
-                                                            sal_Bool    bWithPassword   ) throw( RuntimeException )
+OUString SAL_CALL URLTransformer::getPresentation( const css::util::URL& aURL,
+                                                            sal_Bool    bWithPassword   ) throw( css::uno::RuntimeException )
 {
     // Safe impossible cases.
     if  (( &aURL                        ==  NULL        )   ||
@@ -317,7 +311,7 @@ OUString SAL_CALL URLTransformer::getPresentation(   const   URL&        aURL
     }
 
     // Check given URL
-    URL aTestURL = aURL;
+    css::util::URL aTestURL = aURL;
     sal_Bool bParseResult = parseSmart( aTestURL, aTestURL.Protocol );
     if ( bParseResult )
     {


More information about the Libreoffice-commits mailing list