1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Added default attribute value for ATTR_DEBUG_NAME.

This commit is contained in:
Mikhail Khodjaiants 2006-03-23 20:16:42 +00:00
parent 3948b2f599
commit 7cb4ec78b5
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2006-03-23 Mikhail Khodjaiants
Added default attribute value for ATTR_DEBUG_NAME.
* IMILaunchConfigurationConstants.java
2006-03-21 Mikhail Khodjaiants
Missing error message.
* MIPluginResources.properties

View file

@ -10,8 +10,6 @@
*******************************************************************************/
package org.eclipse.cdt.debug.mi.core;
public interface IMILaunchConfigurationConstants {
/**
* Launch configuration attribute key. The value is the name of
@ -41,7 +39,12 @@ public interface IMILaunchConfigurationConstants {
public static final String ATTR_DEBUGGER_SOLIB_PATH = MIPlugin.getUniqueIdentifier() + ".SOLIB_PATH"; //$NON-NLS-1$
/**
* Launch configuration attribute value. The key is ATTR_DEBUGGER_AUTO_SOLIB.
* Launch configuration attribute value. The key is ATTR_DEBUG_NAME.
*/
public static final String DEBUGGER_DEBUG_NAME_DEFAULT = "gdb"; //$NON-NLS-1$
/**
* Launch configuration attribute value. The key is ATTR_GDB_INIT.
*/
public static final String DEBUGGER_GDB_INIT_DEFAULT = ".gdbinit"; //$NON-NLS-1$