debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/SophiaLaunchWizard.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/SophiaLaunchWizard.java	Thu Jun 18 15:26:18 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/SophiaLaunchWizard.java	Thu Jun 18 16:52:27 2009 -0500
@@ -28,6 +28,7 @@
 
 public class SophiaLaunchWizard extends AbstractLaunchWizard {
 
+    private BuildOptionsSelectionPage fBuildOptionsSelectionPage;
     private SophiaWizardPage fSophiaPage;
     private StopModeRomImageWizardPage fRomImgPage;
     
@@ -55,8 +56,10 @@
  
     public void addPages() {
     	super.addPages();
+    	fBuildOptionsSelectionPage = new BuildOptionsSelectionPage();
     	fSophiaPage = new SophiaWizardPage(this);
     	fRomImgPage = new StopModeRomImageWizardPage(this);
+        addPage(fBuildOptionsSelectionPage);
         addPage(fSophiaPage);
         addPage(fRomImgPage);
         addPage(getSummaryPage());
@@ -85,6 +88,7 @@
     		SettingsData.setDefaults(config, SettingsData.LaunchConfig_SophiaSTI, getProject(), mmpPath, exePath);
     		
     		// now let the wizard pages update values 
+    		fBuildOptionsSelectionPage.updateConfiguration(config);
     		fSophiaPage.updateConfiguration(config);
     		fRomImgPage.updateConfiguration(config);