1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[186652] Next button should not be enabled on final page of discovery wizard

This commit is contained in:
Javier Montalvo Orus 2007-05-14 10:09:36 +00:00
parent daddc54dae
commit b85b3566bb

View file

@ -9,6 +9,7 @@
* Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
* Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods
* Martin Oberhuber (Wind River) - [186523] Move subsystemConfigurations from UI to core
* Javier Montalvo Orus (Symbian) - [186652] Next button should not be enabled on final page of discovery wizard
********************************************************************************/
package org.eclipse.tm.internal.discovery.wizard;
@ -654,7 +655,7 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
* @see org.eclipse.jface.wizard.WizardPage#canFlipToNextPage()
*/
public boolean canFlipToNextPage() {
return isPageComplete();
return false;
}
}