Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] patch for 1.2.1 and HEAD: Fix for PR 49051: Launcher: Debugger tab: variable tracking.

 
Index: .project
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/.project,v
retrieving revision 1.3.4.1
diff -u -r1.3.4.1 .project
--- .project	15 Dec 2003 16:05:28 -0000	1.3.4.1
+++ .project	17 Dec 2003 18:44:08 -0000
@@ -11,6 +11,12 @@
 		<project>org.eclipse.cdt.debug.core</project>
 		<project>org.eclipse.cdt.debug.ui</project>
 		<project>org.eclipse.cdt.ui</project>
+		<project>org.eclipse.core.boot</project>
+		<project>org.eclipse.core.resources</project>
+		<project>org.eclipse.core.runtime</project>
+		<project>org.eclipse.debug.core</project>
+		<project>org.eclipse.debug.ui</project>
+		<project>org.eclipse.ui</project>
 	</projects>
 	<buildSpec>
 		<buildCommand>
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/ChangeLog,v
retrieving revision 1.40.2.1
diff -u -r1.40.2.1 ChangeLog
--- ChangeLog	18 Nov 2003 22:04:16 -0000	1.40.2.1
+++ ChangeLog	17 Dec 2003 18:44:08 -0000
@@ -1,3 +1,7 @@
+2003-12-17 Mikhail Khodjaiants
+	Fix for PR 49051: Launcher: Debugger tab: variable tracking.
+	* CDebuggerTab.java
+ 
 2003-10-27 
 	Fixed 46129
 	
Index: src/org/eclipse/cdt/launch/ui/CDebuggerTab.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java,v
retrieving revision 1.27
diff -u -r1.27 CDebuggerTab.java
--- src/org/eclipse/cdt/launch/ui/CDebuggerTab.java	25 Sep 2003 13:34:31 -0000	1.27
+++ src/org/eclipse/cdt/launch/ui/CDebuggerTab.java	17 Dec 2003 18:44:09 -0000
@@ -104,7 +104,7 @@
 		});
 		
 		fVarBookKeeping = new Button(optionComp, SWT.CHECK);
-		fVarBookKeeping.setText("Enable variable bookkeeping.");
+		fVarBookKeeping.setText("Automatically track the values of variables.");
 		fVarBookKeeping.addSelectionListener(new SelectionAdapter() {
 			public void widgetSelected(SelectionEvent e) {
 				updateLaunchConfigurationDialog();
@@ -233,7 +233,7 @@
 			if (config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, DEFAULT_STOP_AT_MAIN) == true) {
 				fStopInMain.setSelection(true);
 			}
-			if (config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING, false) == true) {
+			if (config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING, false) == false) {
 				fVarBookKeeping.setSelection(true);
 			}
 		} catch (CoreException e) {
@@ -245,7 +245,7 @@
 		if (isValid(config)) {
 			super.performApply(config);
 			config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false);
-			config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING, fVarBookKeeping.getSelection());
+			config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING, !fVarBookKeeping.getSelection());
 			if (fAttachButton.getSelection() == true) {
 				config.setAttribute(
 					ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,

Back to the top