From 3ef8af0ed802d9712f3ccc135972bc01c7002151 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 11 Dec 2003 22:15:08 +0000 Subject: [PATCH] SWT none Windows does not trigger the register callback when the selection is done programatically. We have to do it. --- .../cdt/make/ui/wizards/ConvertToMakeProjectWizardPage.java | 1 + 1 file changed, 1 insertion(+) diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/ConvertToMakeProjectWizardPage.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/ConvertToMakeProjectWizardPage.java index 2f594c84ffa..377139beafd 100644 --- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/ConvertToMakeProjectWizardPage.java +++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/ConvertToMakeProjectWizardPage.java @@ -89,6 +89,7 @@ public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage { IStructuredSelection sel = ((BasicNewResourceWizard)getWizard()).getSelection(); if ( sel != null) { tableViewer.setCheckedElements(sel.toArray()); + setPageComplete(validatePage()); } }