debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/AppTRKLaunchWizard.java
changeset 273 c2533fd23253
parent 212 0e84cf0560e1
child 566 960058f9da89
child 1968 3482df86a51d
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/AppTRKLaunchWizard.java	Thu Jun 18 15:26:18 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/AppTRKLaunchWizard.java	Thu Jun 18 16:52:27 2009 -0500
@@ -29,6 +29,7 @@
 import java.util.List;
 
 public class AppTRKLaunchWizard extends AbstractLaunchWizard {
+    private BuildOptionsSelectionPage fBuildOptionsSelectionPage;
     private TRKConnectionWizardPage fMainPage;
     private TRKSISSelectionWizardPage fSISSelectionPage;
 	private boolean hasFinished = false;
@@ -55,8 +56,10 @@
  
     public void addPages() {
     	super.addPages();
+        fBuildOptionsSelectionPage = new BuildOptionsSelectionPage();
         fMainPage = new TRKConnectionWizardPage(this);
         fSISSelectionPage = new TRKSISSelectionWizardPage(this);
+        addPage(fBuildOptionsSelectionPage);
         addPage(fMainPage);
         addPage(fSISSelectionPage);
 	    addPage(getSummaryPage());
@@ -95,9 +98,8 @@
     			SettingsData.setProcessToLaunch(config, processToLaunchTargetPath);
     		
     		// now let the wizard pages update values 
+    		fBuildOptionsSelectionPage.updateConfiguration(config);
     		fMainPage.updateConfiguration(config);
-    		
-    		// now let the wizard pages update values 
     		fSISSelectionPage.updateConfiguration(config);
 
     	} catch (CoreException e) {