debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/Trace32LaunchWizard.java
changeset 273 c2533fd23253
parent 212 0e84cf0560e1
child 566 960058f9da89
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/Trace32LaunchWizard.java	Thu Jun 18 15:26:18 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/Trace32LaunchWizard.java	Thu Jun 18 16:52:27 2009 -0500
@@ -28,6 +28,7 @@
 
 public class Trace32LaunchWizard extends AbstractLaunchWizard {
 
+    	private BuildOptionsSelectionPage fBuildOptionsSelectionPage;
 	    private Trace32WizardPage fTrace32Page;
 	    private StopModeRomImageWizardPage fRomImgPage;
 	    
@@ -55,8 +56,10 @@
 	 
 	    public void addPages() {
 	    	super.addPages();
+	    	fBuildOptionsSelectionPage = new BuildOptionsSelectionPage();
 	    	fTrace32Page = new Trace32WizardPage(this);
 	    	fRomImgPage = new StopModeRomImageWizardPage(this);
+	        addPage(fBuildOptionsSelectionPage);
 	        addPage(fTrace32Page);
 	        addPage(fRomImgPage);
 	        addPage(getSummaryPage());
@@ -85,6 +88,7 @@
 	    		SettingsData.setDefaults(config, SettingsData.LaunchConfig_Trace32, getProject(), mmpPath, exePath);
 	    		
 	    		// now let the wizard pages update values 
+	    		fBuildOptionsSelectionPage.updateConfiguration(config);
 	    		fTrace32Page.updateConfiguration(config);
 	    		fRomImgPage.updateConfiguration(config);