diff options
author | Sven Gothel <[email protected]> | 2000-11-19 18:46:13 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2000-11-19 18:46:13 +0000 |
commit | 0f4fa6656423a3bd9969834b38c97af06f8d25ac (patch) | |
tree | f1150577bcbe3259a2cb1f60bf7da30320c0de12 /Installer/GL4JInst.java | |
parent | fabcdf910e5f7d0189f6c55162afdd0955fd79d5 (diff) |
fixed the installer to version 2.0.5 (see CHANGES.txt) !
Diffstat (limited to 'Installer/GL4JInst.java')
-rw-r--r-- | Installer/GL4JInst.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Installer/GL4JInst.java b/Installer/GL4JInst.java index d29f16c..18cfa1e 100644 --- a/Installer/GL4JInst.java +++ b/Installer/GL4JInst.java @@ -24,7 +24,7 @@ public class GL4JInst static private final String gl4javaWWW =
"http://www.jausoft.com/Files/Java/1.1.X/GL4Java/Installer";
- static private final String version = "2.04";
+ static private final String version = "2.05";
static private final String cannot_install_title =
"Cannot install GL4Java";
@@ -701,6 +701,8 @@ public class GL4JInst }
if (e.getActionCommand().equals("Start Installation"))
{
+ if(mctrl.checkTextFields()==false)
+ return;
if(mctrl.dialog!=null)
{
mctrl.dialog.setVisible(false);
|