diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-17 10:50:48 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-17 10:21:15 +0000 |
commit | 40da0a9d1cea08fae38c6bc478d1a69f8faaf627 (patch) | |
tree | d514ddb5e51af23e7978d9133a13a24ab27427f0 /avmedia/source/vlc/vlcmanager.hxx | |
parent | 0f732c41bc4edd7075ff68a81c0ca299e3e913c9 (diff) |
com::sun::uno->css in avmedia and animations
Change-Id: Ie4365a488728c39fedacae7650b4b90260e7e44a
Reviewed-on: https://gerrit.libreoffice.org/17153
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'avmedia/source/vlc/vlcmanager.hxx')
-rw-r--r-- | avmedia/source/vlc/vlcmanager.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/avmedia/source/vlc/vlcmanager.hxx b/avmedia/source/vlc/vlcmanager.hxx index 52d76756e010..5545aea3229e 100644 --- a/avmedia/source/vlc/vlcmanager.hxx +++ b/avmedia/source/vlc/vlcmanager.hxx @@ -28,26 +28,26 @@ namespace avmedia { namespace vlc { -class Manager : public ::cppu::WeakImplHelper< ::com::sun::star::media::XManager, - ::com::sun::star::lang::XServiceInfo > +class Manager : public ::cppu::WeakImplHelper< css::media::XManager, + css::lang::XServiceInfo > { std::unique_ptr<wrapper::Instance> mInstance; wrapper::EventHandler mEventHandler; public: - explicit Manager( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& rxMgr ); + explicit Manager( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMgr ); virtual ~Manager(); - ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > SAL_CALL createPlayer( const rtl::OUString& aURL ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + css::uno::Reference< css::media::XPlayer > SAL_CALL createPlayer( const rtl::OUString& aURL ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; - sal_Bool SAL_CALL supportsService( const rtl::OUString& serviceName ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; - ::com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + rtl::OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + sal_Bool SAL_CALL supportsService( const rtl::OUString& serviceName ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + css::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; private: - ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxMgr; - ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > mPlayer; - rtl::OUString mURL; - bool m_is_vlc_found; + css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr; + css::uno::Reference< css::media::XPlayer > mPlayer; + rtl::OUString mURL; + bool m_is_vlc_found; }; } |