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:
parent
241d941438
commit
0d04616e1d
3 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue