diff options
-rw-r--r-- | desktop/source/splash/splash.cxx | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index 3a05105cab90..0652cb45ddd7 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: splash.cxx,v $ - * $Revision: 1.30 $ + * $Revision: 1.31 $ * * This file is part of OpenOffice.org. * @@ -685,19 +685,5 @@ const char* SplashScreen::interfaces[] = const sal_Char *SplashScreen::serviceName = "com.sun.star.office.SplashScreen"; const sal_Char *SplashScreen::implementationName = "com.sun.star.office.comp.SplashScreen"; const sal_Char *SplashScreen::supportedServiceNames[] = {"com.sun.star.office.SplashScreen", NULL}; -OUString SplashScreen::impl_getImplementationName() -{ - return OUString::createFromAscii(implementationName); -} -Sequence<OUString> SplashScreen::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; -} } - |