1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 226931

Since the use of a terminal is determined by the type of launch and is no
longer an option for the user, it should be removed from the launch tab.
This commit is contained in:
Marc Khouzam 2008-04-21 18:21:17 +00:00
parent 241d941438
commit 0d04616e1d
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ public class GdbAttachLaunchConfigurationTabGroup extends AbstractLaunchConfigur
*/
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
new CMainTab(true),
new CMainTab(),
new CDebuggerTab(SessionType.ATTACH),
new SourceLookupTab(),
new CommonTab()

View file

@ -25,7 +25,7 @@ public class GdbLocalRunLaunchConfigurationTabGroup extends AbstractLaunchConfig
*/
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
new CMainTab(true),
new CMainTab(),
new CDebuggerTab(SessionType.RUN),
new SourceLookupTab(),
new CommonTab()

View file

@ -26,7 +26,7 @@ public class GdbRemoteRunLaunchConfigurationTabGroup extends AbstractLaunchConfi
*/
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
new CMainTab(true),
new CMainTab(),
new CDebuggerTab(SessionType.REMOTE),
new SourceLookupTab(),
new CommonTab()