summaryrefslogtreecommitdiff
path: root/desktop/unx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-03 16:48:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-03 16:48:50 +0000
commitf758cbca2a358d2a708bc9880b2ae55d52edac55 (patch)
tree3e2bc88f4dd200357e45f4c9eb2bb58aaa0e6213 /desktop/unx
parent2c7cd5134feb4a38f511736a6a81ee4273bab801 (diff)
callcatcher: drop big pile of uncalled and uncallable code
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/splash/unxsplash.cxx16
-rw-r--r--desktop/unx/splash/unxsplash.hxx4
2 files changed, 0 insertions, 20 deletions
diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx
index ea13f1b381..261fb5c8b2 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<OUString> UnxSplashScreen::impl_getSupportedServiceNames()
-{
- Sequence<OUString> 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 31f57efbec..abe5a8cac2 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<OUString> impl_getSupportedServiceNames();
-
// XStatusIndicator
virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( RuntimeException );
virtual void SAL_CALL end() throw ( RuntimeException );