[izpack-changes] r1494 - in izpack-launcher/trunk: . src

noreply at berlios.de noreply at berlios.de
Sat Jul 22 08:17:21 CEST 2006


Author: jponge
Date: 2006-07-22 08:17:12 +0200 (Sat, 22 Jul 2006)
New Revision: 1494

Modified:
   izpack-launcher/trunk/Changes
   izpack-launcher/trunk/src/main.cpp
Log:
Stupid fix - the JRE radio button was enabled/disabled the reversed way.

Modified: izpack-launcher/trunk/Changes
===================================================================
--- izpack-launcher/trunk/Changes	2006-07-20 15:12:38 UTC (rev 1493)
+++ izpack-launcher/trunk/Changes	2006-07-22 06:17:12 UTC (rev 1494)
@@ -1,3 +1,7 @@
+2006.07.22 (Julien Ponge)
+* main.cpp: fix for stupid error that disables the JRE radio button if a JRE
+  is provider, and enables it when it is not.
+
 Release 2.0 (2005.10.27) [release-2.0]
 
 * New Qt-based launcher.

Modified: izpack-launcher/trunk/src/main.cpp
===================================================================
--- izpack-launcher/trunk/src/main.cpp	2006-07-20 15:12:38 UTC (rev 1493)
+++ izpack-launcher/trunk/src/main.cpp	2006-07-22 06:17:12 UTC (rev 1494)
@@ -64,7 +64,7 @@
     else
     {
         ResolveDialog* dlg = new ResolveDialog();
-        if (launcher.isJREProvided())
+        if (!launcher.isJREProvided())
         {
             dlg->disableProvidedRadio();
         }




More information about the izpack-changes mailing list