diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 12:17:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 12:17:41 +0000 |
commit | 8b86d4f7d9951febed5a00bc82d01ab5a58ceaf4 (patch) | |
tree | 72609fb6d1784b53157722599ef6b19343dde593 /desktop/source/splash | |
parent | b85174ad6bb5071a444549bb571590ac10513799 (diff) |
INTEGRATION: CWS fwk86 (1.28.118); FILE MERGED
2008/04/30 15:50:51 pb 1.28.118.3: RESYNC: (1.29-1.30); FILE MERGED
2008/03/26 07:36:40 pb 1.28.118.2: RESYNC: (1.28-1.29); FILE MERGED
2008/03/06 09:28:23 cd 1.28.118.1: #i86384# Remove unused code from desktop
Diffstat (limited to 'desktop/source/splash')
-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; -} } - |