avmedia/source/quicktime/manager.hxx     |    8 ++++----
 avmedia/source/quicktime/manager.mm      |    2 +-
 avmedia/source/quicktime/player.hxx      |   10 +++++-----
 avmedia/source/quicktime/player.mm       |    2 +-
 avmedia/source/quicktime/quicktimeuno.mm |    2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 37d21245b5f03fd261c681951f1d819a0bc4423a
Author: Ricardo Montania <[email protected]>
Date:   Tue Sep 18 13:10:32 2012 -0300

    Some OUString cleanup and ::rtl::OUString to OUString in avmedia
    
    Change-Id: If79fffec7388e73fd85f5279e773af363c5f97e3
    Reviewed-on: https://gerrit.libreoffice.org/645
    Reviewed-by: Miklos Vajna <[email protected]>
    Tested-by: Miklos Vajna <[email protected]>

diff --git a/avmedia/source/quicktime/manager.hxx 
b/avmedia/source/quicktime/manager.hxx
index adab01f..ecd344c 100644
--- a/avmedia/source/quicktime/manager.hxx
+++ b/avmedia/source/quicktime/manager.hxx
@@ -48,12 +48,12 @@ public:
     ~Manager();
 
     // XManager
-    virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer 
> SAL_CALL createPlayer( const ::rtl::OUString& aURL ) throw 
(::com::sun::star::uno::RuntimeException);
+    virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer 
> SAL_CALL createPlayer( const OUString& aURL ) throw 
(::com::sun::star::uno::RuntimeException);
 
     // XServiceInfo
-    virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException);
-    virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& 
ServiceName ) throw (::com::sun::star::uno::RuntimeException);
-    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL 
getSupportedServiceNames(  ) throw (::com::sun::star::uno::RuntimeException);
+    virtual OUString SAL_CALL getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException);
+    virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
throw (::com::sun::star::uno::RuntimeException);
+    virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL 
getSupportedServiceNames(  ) throw (::com::sun::star::uno::RuntimeException);
 private:
 
     ::com::sun::star::uno::Reference< 
::com::sun::star::lang::XMultiServiceFactory > mxMgr;
diff --git a/avmedia/source/quicktime/manager.mm 
b/avmedia/source/quicktime/manager.mm
index ca8da8e..ec36906 100644
--- a/avmedia/source/quicktime/manager.mm
+++ b/avmedia/source/quicktime/manager.mm
@@ -88,7 +88,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL 
Manager::getSupportedServiceNames(  )
     throw (uno::RuntimeException)
 {
     uno::Sequence< ::rtl::OUString > aRet(1);
-    aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
+    aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
 
     return aRet;
 }
diff --git a/avmedia/source/quicktime/player.hxx 
b/avmedia/source/quicktime/player.hxx
index 9bffa99..8bd8a77 100644
--- a/avmedia/source/quicktime/player.hxx
+++ b/avmedia/source/quicktime/player.hxx
@@ -50,7 +50,7 @@ public:
     Player( const ::com::sun::star::uno::Reference< 
::com::sun::star::lang::XMultiServiceFactory >& rxMgr );
     ~Player();
 
-    bool create( const ::rtl::OUString& rURL );
+    bool create( const OUString& rURL );
 
     // XPlayer
     virtual void SAL_CALL start(  ) throw 
(::com::sun::star::uno::RuntimeException);
@@ -70,16 +70,16 @@ public:
     virtual ::com::sun::star::uno::Reference< 
::com::sun::star::media::XPlayerWindow > SAL_CALL createPlayerWindow( const 
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) 
throw (::com::sun::star::uno::RuntimeException);
     virtual ::com::sun::star::uno::Reference< 
::com::sun::star::media::XFrameGrabber > SAL_CALL createFrameGrabber(  ) throw 
(::com::sun::star::uno::RuntimeException);
     // XServiceInfo
-    virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException);
-    virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& 
ServiceName ) throw (::com::sun::star::uno::RuntimeException);
-    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL 
getSupportedServiceNames(  ) throw (::com::sun::star::uno::RuntimeException);
+    virtual OUString SAL_CALL getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException);
+    virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
throw (::com::sun::star::uno::RuntimeException);
+    virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL 
getSupportedServiceNames(  ) throw (::com::sun::star::uno::RuntimeException);
 
     QTMovie* getMovie();
 
 private:
     ::com::sun::star::uno::Reference< 
::com::sun::star::lang::XMultiServiceFactory > mxMgr;
 
-    ::rtl::OUString         maURL;
+    OUString                maURL;
 
     QTMovie                 *mpMovie;      // the Movie object
 
diff --git a/avmedia/source/quicktime/player.mm 
b/avmedia/source/quicktime/player.mm
index cf3a913..fec1721 100644
--- a/avmedia/source/quicktime/player.mm
+++ b/avmedia/source/quicktime/player.mm
@@ -420,7 +420,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL 
Player::getSupportedServiceNames(  )
     throw (uno::RuntimeException)
 {
     uno::Sequence< ::rtl::OUString > aRet(1);
-    aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( 
AVMEDIA_QUICKTIME_PLAYER_SERVICENAME ) );
+    aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_PLAYER_SERVICENAME ) );
 
     return aRet;
 }
diff --git a/avmedia/source/quicktime/quicktimeuno.mm 
b/avmedia/source/quicktime/quicktimeuno.mm
index e7f739b..37600c3 100644
--- a/avmedia/source/quicktime/quicktimeuno.mm
+++ b/avmedia/source/quicktime/quicktimeuno.mm
@@ -52,7 +52,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL 
component_getFactory( const sal_C
         xFactory = uno::Reference< lang::XSingleServiceFactory >( 
::cppu::createSingleFactory(
                         reinterpret_cast< lang::XMultiServiceFactory* >( 
pServiceManager ),
                         
::rtl::OUString(AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME ),
-                        create_MediaPlayer, uno::Sequence< ::rtl::OUString >( 
&aServiceName, 1 ) ) );
+                        create_MediaPlayer, uno::Sequence< OUString >( 
&aServiceName, 1 ) ) );
     }
 
     if( xFactory.is() )
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to