From 0b984e08181fdd5f7ca451478d0f3712c1b5284b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 3 Dec 2010 16:48:50 +0000 Subject: callcatcher: drop big pile of uncalled and uncallable code --- desktop/unx/splash/unxsplash.cxx | 16 ---------------- desktop/unx/splash/unxsplash.hxx | 4 ---- 2 files changed, 20 deletions(-) (limited to 'desktop/unx/splash') diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx index ea13f1b381de..261fb5c8b276 100644 --- a/desktop/unx/splash/unxsplash.cxx +++ b/desktop/unx/splash/unxsplash.cxx @@ -159,22 +159,6 @@ const sal_Char *UnxSplashScreen::serviceName = "com.sun.star.office.PipeSplashSc const sal_Char *UnxSplashScreen::implementationName = "com.sun.star.office.comp.PipeSplashScreen"; const sal_Char *UnxSplashScreen::supportedServiceNames[] = { "com.sun.star.office.PipeSplashScreen", NULL }; -OUString UnxSplashScreen::impl_getImplementationName() -{ - return OUString::createFromAscii( implementationName ); -} - -Sequence UnxSplashScreen::impl_getSupportedServiceNames() -{ - Sequence aSequence; - for ( int i = 0; supportedServiceNames[i] != NULL; i++ ) - { - aSequence.realloc( i+1 ); - aSequence[i] = OUString::createFromAscii( supportedServiceNames[i] ); - } - return aSequence; -} - } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/desktop/unx/splash/unxsplash.hxx b/desktop/unx/splash/unxsplash.hxx index 31f57efbecd9..abe5a8cac2bd 100644 --- a/desktop/unx/splash/unxsplash.hxx +++ b/desktop/unx/splash/unxsplash.hxx @@ -73,10 +73,6 @@ public: static Reference< XInterface > getInstance( const Reference < XMultiServiceFactory >& xFactory ); - // static service info - static OUString impl_getImplementationName(); - static Sequence impl_getSupportedServiceNames(); - // XStatusIndicator virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( RuntimeException ); virtual void SAL_CALL end() throw ( RuntimeException ); -- cgit