diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-11 14:40:54 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-12 19:53:18 +0000 |
commit | 4a9b401f9877b348a0e716e79cb8cc41645ceba3 (patch) | |
tree | ecddc4e20b644d12e3c83589be2c5692f827e7f0 /desktop/source/splash | |
parent | 01547985ceee8c199dc189071845ef5fcda11782 (diff) |
desktop: com::sun::star->css
Change-Id: Ie94dea9b4f48829132ceadcbf36634eeed191bb9
Reviewed-on: https://gerrit.libreoffice.org/18498
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop/source/splash')
-rw-r--r-- | desktop/source/splash/splash.cxx | 4 | ||||
-rw-r--r-- | desktop/source/splash/splash.hxx | 8 | ||||
-rw-r--r-- | desktop/source/splash/unxsplash.cxx | 2 | ||||
-rw-r--r-- | desktop/source/splash/unxsplash.hxx | 2 |
4 files changed, 7 insertions, 9 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index 6b64d25df25c..17f07dd621be 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -115,7 +115,7 @@ public: virtual void SAL_CALL start(const OUString& aText, sal_Int32 nRange) throw ( RuntimeException, std::exception ) SAL_OVERRIDE; // XInitialize - virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& aArguments ) + virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any>& aArguments ) throw ( RuntimeException, std::exception ) SAL_OVERRIDE; virtual OUString SAL_CALL getImplementationName() @@ -273,7 +273,7 @@ void SAL_CALL SplashScreen::setValue(sal_Int32 nValue) // XInitialize void SAL_CALL -SplashScreen::initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& aArguments ) +SplashScreen::initialize( const css::uno::Sequence< css::uno::Any>& aArguments ) throw (RuntimeException, std::exception) { ::osl::ClearableMutexGuard aGuard( _aMutex ); diff --git a/desktop/source/splash/splash.hxx b/desktop/source/splash/splash.hxx index 044177284cc7..813e17248a12 100644 --- a/desktop/source/splash/splash.hxx +++ b/desktop/source/splash/splash.hxx @@ -35,14 +35,12 @@ namespace com { namespace sun { namespace star { namespace desktop { namespace splash { -com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL -create( - com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > - const &); +css::uno::Reference< css::uno::XInterface > SAL_CALL +create( css::uno::Reference< css::uno::XComponentContext > const & ); OUString SAL_CALL getImplementationName(); -com::sun::star::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(); } } diff --git a/desktop/source/splash/unxsplash.cxx b/desktop/source/splash/unxsplash.cxx index 6e4fe71ace0a..cc7ecc50cb35 100644 --- a/desktop/source/splash/unxsplash.cxx +++ b/desktop/source/splash/unxsplash.cxx @@ -95,7 +95,7 @@ void SAL_CALL UnxSplashScreen::setValue( sal_Int32 nValue ) // XInitialize void SAL_CALL -UnxSplashScreen::initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& ) +UnxSplashScreen::initialize( const css::uno::Sequence< css::uno::Any>& ) throw ( RuntimeException, std::exception ) { for ( sal_uInt32 i = 0; i < osl_getCommandArgCount(); i++ ) diff --git a/desktop/source/splash/unxsplash.hxx b/desktop/source/splash/unxsplash.hxx index e0f7a189c4cd..8a5294d5eabe 100644 --- a/desktop/source/splash/unxsplash.hxx +++ b/desktop/source/splash/unxsplash.hxx @@ -74,7 +74,7 @@ public: uno::Reference< uno::XInterface > SAL_CALL UnxSplash_createInstance(const uno::Reference< uno::XComponentContext > & xCtx ) throw( uno::Exception ); OUString UnxSplash_getImplementationName(); -com::sun::star::uno::Sequence< OUString > SAL_CALL UnxSplash_getSupportedServiceNames() throw (); +css::uno::Sequence< OUString > SAL_CALL UnxSplash_getSupportedServiceNames() throw (); #endif // INCLUDED_DESKTOP_SOURCE_SPLASH_UNXSPLASH_HXX |