mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 568454: Rework GDB Hardware "Main" tab to extend CMainTab2
Change-Id: I0b7be555a43f66cead397e93b58689da1c94dcd4
This commit is contained in:
parent
90e53382fb
commit
b0d25c22eb
1 changed files with 12 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2007 - 2015 QNX Software Systems and others.
|
* Copyright (c) 2007 - 2020 QNX Software Systems and others.
|
||||||
*
|
*
|
||||||
* This program and the accompanying materials
|
* This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License 2.0
|
* are made available under the terms of the Eclipse Public License 2.0
|
||||||
|
@ -10,18 +10,22 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* QNX Software Systems - Initial implementation
|
* QNX Software Systems - Initial implementation
|
||||||
|
* John Dallaway - Extend CMainTab2, bug 568454
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.gdbjtag.internal.ui;
|
package org.eclipse.cdt.debug.gdbjtag.internal.ui;
|
||||||
|
|
||||||
import org.eclipse.cdt.dsf.gdb.internal.ui.launching.CMainTab;
|
import org.eclipse.cdt.launch.ui.CMainTab2;
|
||||||
|
|
||||||
/**
|
public class GDBJtagDSFCMainTab extends CMainTab2 {
|
||||||
* @since 7.0
|
|
||||||
*/
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public class GDBJtagDSFCMainTab extends CMainTab {
|
|
||||||
|
|
||||||
public GDBJtagDSFCMainTab() {
|
public GDBJtagDSFCMainTab() {
|
||||||
super(CMainTab.INCLUDE_BUILD_SETTINGS);
|
super(CMainTab2.INCLUDE_BUILD_SETTINGS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getId() {
|
||||||
|
// return historic ID for compatibility with existing consumers
|
||||||
|
return "org.eclipse.cdt.dsf.gdb.launch.mainTab"; //$NON-NLS-1$
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue