summaryrefslogtreecommitdiff
path: root/desktop/unx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-28 10:36:40 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-28 10:36:51 +0200
commit2094610175140023cf8f904f8506c189e36dec06 (patch)
treeccf64dab3545a2e1e7e55fc288e929cc88746598 /desktop/unx
parentca97ee598a08365f7bef7e7b8172bff4433ee8b0 (diff)
namespacing cleanup
Change-Id: I1384bf53a29e174bb97db4c0644f9dce39c0e36d
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/splash/unxsplash.cxx1
-rw-r--r--desktop/unx/splash/unxsplash.hxx23
2 files changed, 10 insertions, 14 deletions
diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx
index 812cc00fc2b6..35c20b1a8c55 100644
--- a/desktop/unx/splash/unxsplash.cxx
+++ b/desktop/unx/splash/unxsplash.cxx
@@ -31,6 +31,7 @@
using namespace ::rtl;
using namespace ::com::sun::star;
using namespace ::com::sun::star::registry;
+using namespace ::com::sun::star::uno;
namespace desktop
{
diff --git a/desktop/unx/splash/unxsplash.hxx b/desktop/unx/splash/unxsplash.hxx
index b25e858d9bac..04586e180157 100644
--- a/desktop/unx/splash/unxsplash.hxx
+++ b/desktop/unx/splash/unxsplash.hxx
@@ -40,14 +40,9 @@
#include <osl/mutex.hxx>
#include <rtl/bootstrap.hxx>
-using namespace ::rtl;
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::task;
-
namespace desktop {
-class UnxSplashScreen : public ::cppu::WeakImplHelper2< XStatusIndicator, XInitialization >
+class UnxSplashScreen : public ::cppu::WeakImplHelper2< css::task::XStatusIndicator, css::lang::XInitialization >
{
private:
// don't allow anybody but ourselves to create instances of this class
@@ -60,22 +55,22 @@ private:
static UnxSplashScreen *m_pINSTANCE;
static osl::Mutex m_aMutex;
- Reference< XComponentContext > m_xCtx;
+ css::uno::Reference< css::uno::XComponentContext > m_xCtx;
FILE *m_pOutFd;
public:
- UnxSplashScreen( const Reference< XComponentContext >& xCtx );
+ UnxSplashScreen( const css::uno::Reference< css::uno::XComponentContext >& xCtx );
// XStatusIndicator
- virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( RuntimeException );
- virtual void SAL_CALL end() throw ( RuntimeException );
- virtual void SAL_CALL reset() throw ( RuntimeException );
- virtual void SAL_CALL setText( const OUString& aText ) throw ( RuntimeException );
- virtual void SAL_CALL setValue( sal_Int32 nValue ) throw ( RuntimeException );
+ virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL end() throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL reset() throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL setText( const OUString& aText ) throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL setValue( sal_Int32 nValue ) throw ( css::uno::RuntimeException );
// XInitialize
- virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& aArguments ) throw ( RuntimeException );
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any>& aArguments ) throw ( css::uno::RuntimeException );
};
}