From e0485ec52bbf23bafbc63c0682b298d0c6e6e4e7 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 11 Dec 2003 22:08:42 +0000 Subject: [PATCH] A bug in SWT other then motif. When selecting things programatically the callback is not call. The fix is to do it ourselves. --- .../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()); } }