Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2011-08-30 19:22:03 +0000
committerAndrew Niefer2011-08-30 19:22:03 +0000
commitfb7c1613eba13c6a8711132dcdb7bf8fc50d6654 (patch)
tree804210f3d7d51df7c856d8e71b7fc4aede2f594f
parent70fdbc6b9936f587bdcc1481eb0e67468e29a0c6 (diff)
downloadrt.equinox.framework-fb7c1613eba13c6a8711132dcdb7bf8fc50d6654.tar.gz
rt.equinox.framework-fb7c1613eba13c6a8711132dcdb7bf8fc50d6654.tar.xz
rt.equinox.framework-fb7c1613eba13c6a8711132dcdb7bf8fc50d6654.zip
bug 327152 - showsplash option is ignored
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipse.c b/bundles/org.eclipse.equinox.executable/library/eclipse.c
index 410e62c7f..be01c9ccc 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipse.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipse.c
@@ -477,10 +477,10 @@ JNIEXPORT int run(int argc, _TCHAR* argv[], _TCHAR* vmArgs[])
#endif
/* If the showsplash option was given and we are using JNI */
- if (!noSplash && showSplashArg && launchMode == LAUNCH_JNI)
+ if (!noSplash && showSplashArg)
{
splashBitmap = findSplash(showSplashArg);
- if (splashBitmap != NULL) {
+ if (splashBitmap != NULL && launchMode == LAUNCH_JNI) {
showSplash(splashBitmap);
}
}

Back to the top