summaryrefslogtreecommitdiff
path: root/desktop/source/splash
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-05-13 12:17:41 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-05-13 12:17:41 +0000
commit761c17097efa38ad08b59655bf5abc05aff928d6 (patch)
treeb394895365fb4bb0d16e8e8d86f69e8e794f92b3 /desktop/source/splash
parent519ab0aae26aa16050c23ba5fd69436e424e5065 (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.cxx16
1 files changed, 1 insertions, 15 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx
index 8a3c05de13..7338101a97 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;
-}
}
-