# HG changeset patch # User dadubrow # Date 1266957434 21600 # Node ID a39c7d184f5d1bc5102cb7f2d3b81df62bfc57df # Parent a1762c18df954bf1e94a5c032fdeedc3089998ca bug 10786 - fix and add help context ids diff -r a1762c18df95 -r a39c7d184f5d debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/LaunchWizardHelpIds.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/LaunchWizardHelpIds.java Tue Feb 23 13:49:00 2010 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/LaunchWizardHelpIds.java Tue Feb 23 14:37:14 2010 -0600 @@ -24,7 +24,7 @@ /* * Help context ID. Should be: PluginID + "." + */ - private static final String HelpID_Prefix = LaunchPlugin.getUniqueIdentifier() + ".launch2_"; //$NON-NLS-1$ + private static final String HelpID_Prefix = LaunchPlugin.getUniqueIdentifier() + ".newwizard_"; //$NON-NLS-1$ public static final String WIZARD_DIALOG_CHANGE_DEBUG_PROCESS = HelpID_Prefix + "wizard_dialog_change_debug_process"; //$NON-NLS-1$ @@ -34,4 +34,5 @@ public static final String WIZARD_DIALOG_OTHER_SETTINGS = HelpID_Prefix + "wizard_dialog_other_settings"; //$NON-NLS-1$ + public static final String WIZARD_DIALOG_LAUNCH_OPTIONS_PAGE = HelpID_Prefix + "wizard_dialog_launch_options_page"; //$NON-NLS-1$ } diff -r a1762c18df95 -r a39c7d184f5d debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/OtherSettingsDialog.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/OtherSettingsDialog.java Tue Feb 23 13:49:00 2010 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/OtherSettingsDialog.java Tue Feb 23 14:37:14 2010 -0600 @@ -26,7 +26,6 @@ import org.eclipse.swt.events.ControlEvent; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; -import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; diff -r a1762c18df95 -r a39c7d184f5d debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/UnifiedLaunchOptionsPage.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/UnifiedLaunchOptionsPage.java Tue Feb 23 13:49:00 2010 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/UnifiedLaunchOptionsPage.java Tue Feb 23 14:37:14 2010 -0600 @@ -31,6 +31,7 @@ import com.nokia.cdt.internal.debug.launch.LaunchPlugin; import com.nokia.cdt.internal.debug.launch.newwizard.IWizardSection.ISectionChangeListener; +import com.nokia.cpp.internal.api.utils.ui.WorkbenchUtils; /** * This page presents three sections: @@ -95,6 +96,7 @@ GridDataFactory.fillDefaults().grab(true, true).applyTo(section.getControl()); } + WorkbenchUtils.setHelpContextId(composite, LaunchWizardHelpIds.WIZARD_DIALOG_LAUNCH_OPTIONS_PAGE); setControl(composite); }