diff --git a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog index 78a2af23f26..863863203ce 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog @@ -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 diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java index 3007a4d1f2f..9831e491368 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java @@ -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$