summaryrefslogtreecommitdiff
path: root/scripting/workben/installer/Welcome.java
diff options
context:
space:
mode:
authorTomas O'Connor <toconnor@openoffice.org>2003-01-16 11:02:49 +0000
committerTomas O'Connor <toconnor@openoffice.org>2003-01-16 11:02:49 +0000
commitb979c91b759906f0c9918c69622600f3e02dcd8a (patch)
tree939a6a9ea0073f7cb864a7cdb0fd2ad8b7a14c26 /scripting/workben/installer/Welcome.java
parentdbae842f902660c416abcc68da7f8b701921368f (diff)
IssueZilla 9783 - allow framework to be installed from the command line and from outside of the program directory of an office installation
Diffstat (limited to 'scripting/workben/installer/Welcome.java')
-rw-r--r--scripting/workben/installer/Welcome.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripting/workben/installer/Welcome.java b/scripting/workben/installer/Welcome.java
index 83346b339c93..e27d45577382 100644
--- a/scripting/workben/installer/Welcome.java
+++ b/scripting/workben/installer/Welcome.java
@@ -44,7 +44,7 @@ public class Welcome extends javax.swing.JPanel implements ActionListener {
//area.setText("\n \t Please ensure that you have exited from Office");
String message = "\n \t Please ensure that you have exited from Office";
- String userDir = (String) System.getProperty( "user.dir" );
+ /* String userDir = (String) System.getProperty( "user.dir" );
boolean isValid = validateCurrentUserDir(userDir);
if( !isValid ) {
nextButtonEnable = false;
@@ -57,7 +57,7 @@ public class Welcome extends javax.swing.JPanel implements ActionListener {
String offInstallPth = null;
offInstallPth = userDir.substring( 0, programPosition );
- wizard.storeLocation(offInstallPth);
+ wizard.storeLocation(offInstallPth); */
setUpWelcomePanel(message);
}//GEN-END:initComponents
@@ -66,7 +66,7 @@ public class Welcome extends javax.swing.JPanel implements ActionListener {
area.setText( message );
welcomePanel.add(area, java.awt.BorderLayout.CENTER);
add(welcomePanel, java.awt.BorderLayout.CENTER);
- NavPanel nav = new NavPanel(wizard, false, nextButtonEnable, true, "", InstallWizard.FINAL);
+ NavPanel nav = new NavPanel(wizard, false, nextButtonEnable, true, "", InstallWizard.VERSIONS);
nav.setNextListener(this);
add(nav, java.awt.BorderLayout.SOUTH);