Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-04-12 19:37:30 +0000
committerAndrew Niefer2007-04-12 19:37:30 +0000
commit40badac31c79aaf10e6e12de35c8b0f7d8207f7e (patch)
treed0ca1fcca3371f15b8b33244c83de36a026b5706 /bundles/org.eclipse.equinox.executable/library
parent9d0ff928e856cefd78ca510ab5320eab15cd3586 (diff)
downloadrt.equinox.framework-40badac31c79aaf10e6e12de35c8b0f7d8207f7e.tar.gz
rt.equinox.framework-40badac31c79aaf10e6e12de35c8b0f7d8207f7e.tar.xz
rt.equinox.framework-40badac31c79aaf10e6e12de35c8b0f7d8207f7e.zip
bug 181501
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/library')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipse.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipse.c b/bundles/org.eclipse.equinox.executable/library/eclipse.c
index 9e866aeab..f110affcb 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipse.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipse.c
@@ -729,6 +729,14 @@ static void getVMCommand( int argc, _TCHAR* argv[], _TCHAR **vmArgv[], _TCHAR **
(*progArgv)[ dst++ ] = osArchArg;
}
+ /* Append the show splash window command, if defined. */
+ if (!noSplash)
+ {
+ (*progArgv)[ dst++ ] = SHOWSPLASH;
+ if(showSplashArg != NULL)
+ (*progArgv)[ dst++ ] = showSplashArg;
+ }
+
/* Append the launcher command */
(*progArgv)[ dst++ ] = LAUNCHER;
(*progArgv)[ dst++ ] = program;
@@ -746,14 +754,6 @@ static void getVMCommand( int argc, _TCHAR* argv[], _TCHAR **vmArgv[], _TCHAR **
/* the startup jar */
(*progArgv)[ dst++ ] = STARTUP;
(*progArgv)[ dst++ ] = jarFile;
-
- /* Append the show splash window command, if defined. */
- if (!noSplash)
- {
- (*progArgv)[ dst++ ] = SHOWSPLASH;
- if(showSplashArg != NULL)
- (*progArgv)[ dst++ ] = showSplashArg;
- }
/* Append the exit data command. */
if (sharedID) {

Back to the top