Index: src/org/netbeans/installer/InstallProfilePanel.java =================================================================== RCS file: /cvs/installer/src/org/netbeans/installer/InstallProfilePanel.java,v retrieving revision 1.3 diff -u -b -B -r1.3 InstallProfilePanel.java --- src/org/netbeans/installer/InstallProfilePanel.java 23 Jul 2002 13:42:05 -0000 1.3 +++ src/org/netbeans/installer/InstallProfilePanel.java 19 Aug 2002 13:06:56 -0000 @@ -32,7 +32,7 @@ * * @author Richard Gregor */ -public class InstallProfilePanel extends ExtendedWizardPanel implements ChoiceComponentListener{ +public class InstallProfilePanel extends ExtendedWizardPanel { private String description = "$L(org.netbeans.installer.InstallerResources,INSTALL_PROFILE_DESC)"; //NOI18N private String caption = "$L(org.netbeans.installer.InstallerResources,INSTALL_PROFILE_CAPTION)"; //NOI18N @@ -166,8 +166,6 @@ checkComp = new ChoiceComponent(); checkComp.setComponentType(ChoiceComponent.CHECKBOX_TYPE); checkComp.setOptions(new String[] {resolveString(this.getCheckCaption())}); - checkComp.addChoiceComponentListener(this); - //checkComp.setSelectedIndex(0); choiceComp = new ChoiceComponent(); choiceComp.setOptions(getDetectedDefs()); @@ -195,9 +193,6 @@ panel3.add(pane2, BorderLayout.WEST); panel3.setBackground(getContentPane().getBackground()); getContentPane().add(panel3,BorderLayout.NORTH); - choiceComp.setEnabled(false); - //getContentPane().add(pane0, BorderLayout.NORTH); - //getContentPane().add(pane2, BorderLayout.WEST); } //from WizardPanel @@ -247,8 +242,5 @@ d.setVisible(true); } - public void choiceComponentStateChanged(com.installshield.wizardx.ui.ChoiceComponentEvent e) { - choiceComp.setEnabled(e.getState()); - } }