Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2009-01-29 21:12:18 +0000
committerJohn Cortell2009-01-29 21:12:18 +0000
commitf81a89caed92bd9db997e2f190cf7e9746f34ce5 (patch)
treeb81f677c53643f2703baef19d9d9c329fe69a008
parent4518d368aa273eab7c1c21e856d9649b81fff353 (diff)
downloadorg.eclipse.cdt-f81a89caed92bd9db997e2f190cf7e9746f34ce5.tar.gz
org.eclipse.cdt-f81a89caed92bd9db997e2f190cf7e9746f34ce5.tar.xz
org.eclipse.cdt-f81a89caed92bd9db997e2f190cf7e9746f34ce5.zip
Add constant for the Signals view, as is done for the other CDT debugger views.
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICDebugUIConstants.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICDebugUIConstants.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICDebugUIConstants.java
index 8ffaf77c8fd..79a12c75e3d 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICDebugUIConstants.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICDebugUIConstants.java
@@ -33,6 +33,11 @@ public interface ICDebugUIConstants {
public static final String ID_DISASSEMBLY_VIEW = PREFIX + "DisassemblyView"; //$NON-NLS-1$
/**
+ * Signals view identifier (value <code>"org.eclipse.cdt.debug.ui.SignalsView"</code>).
+ */
+ public static final String ID_SIGNALS_VIEW = PREFIX + "SignalsView"; //$NON-NLS-1$
+
+ /**
* Deafult disassembly editor identifier (value <code>"org.eclipse.cdt.debug.ui.disassemblyEditor"</code>).
*/
public static final String ID_DEFAULT_DISASSEMBLY_EDITOR = PREFIX + "disassemblyEditor"; //$NON-NLS-1$

Back to the top