From: Carsten W. <ca...@us...> - 2005-05-22 14:27:28
|
Update of /cvsroot/jake2/jake2/src/jake2/qcommon In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26403/src/jake2/qcommon Modified Files: Tag: r_0_9_4 Q2DataDialog.java Log Message: bugfix: now your are able to type a baseq2 path into the textfield and press OK. (jake2 path name with upper case) see Installer Index: Q2DataDialog.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/qcommon/Q2DataDialog.java,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C2 -d -r1.13 -r1.13.2.1 *** Q2DataDialog.java 12 May 2005 12:52:50 -0000 1.13 --- Q2DataDialog.java 22 May 2005 14:27:17 -0000 1.13.2.1 *************** *** 36,40 **** int y = (mode.getHeight() - getHeight()) / 2; setLocation(x, y); ! dir = home + sep + "jake2" + sep + "baseq2"; jTextField1.setText(dir); } --- 36,40 ---- int y = (mode.getHeight() - getHeight()) / 2; setLocation(x, y); ! dir = home + sep + "Jake2" + sep + "baseq2"; jTextField1.setText(dir); } *************** *** 184,188 **** private void okButtonActionPerformed(java.awt.event.ActionEvent evt) { ! if (dir != null) { Cvar.Set("cddir", dir); --- 184,188 ---- private void okButtonActionPerformed(java.awt.event.ActionEvent evt) { ! dir = jTextField1.getText(); if (dir != null) { Cvar.Set("cddir", dir); *************** *** 442,446 **** public InstallPanel(Q2DataDialog d) { initComponents(); ! String dir = Q2DataDialog.home + Q2DataDialog.sep + "jake2"; destDir.setText(dir); initMirrors(); --- 442,446 ---- public InstallPanel(Q2DataDialog d) { initComponents(); ! String dir = Q2DataDialog.home + Q2DataDialog.sep + "Jake2"; destDir.setText(dir); initMirrors(); |