Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] solib set by default

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/ChangeLog,v
retrieving revision 1.1
diff -u -r1.1 ChangeLog
--- ChangeLog	27 Nov 2002 16:26:46 -0000	1.1
+++ ChangeLog	3 Jan 2003 20:27:49 -0000
@@ -1,3 +1,8 @@
+2003-01-03 Alain Magloire
+
+	* src/org/eclipse./cdt/debug/mi/internal/ui/CDebuggerPage.java (setDefaults):
+	Set autosolib  to true by default.
+
 2002-11-26 Doug Schaefer
 
 	* plugin.xml:
Index: src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java,v
retrieving revision 1.4
diff -u -r1.4 CDebuggerPage.java
--- src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java	8 Oct 2002 11:55:50 -0000	1.4
+++ src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java	3 Jan 2003 20:27:49 -0000
@@ -90,7 +90,7 @@
 
 	public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
 		configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
-		configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
+		configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, true);
 	}
 
 	/**
@@ -113,7 +113,7 @@
 		boolean autosolib = false;
 		try {
 			debuggerCommand = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
-			autosolib = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
+			autosolib = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, true);
 		} catch (CoreException e) {
 		}
 		fDebuggerCommandText.setText(debuggerCommand);



Back to the top