Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Inglis2003-12-18 15:45:21 +0000
committerDavid Inglis2003-12-18 15:45:21 +0000
commitd11053223e15b1439b23a208b65b953280802989 (patch)
treed3e7645fcef366e87744e7f83bc35a6c0c79b645 /launch/org.eclipse.cdt.launch
parent2450aa42dad97d68eaf65dfff80eddec3ed245a5 (diff)
downloadorg.eclipse.cdt-d11053223e15b1439b23a208b65b953280802989.tar.gz
org.eclipse.cdt-d11053223e15b1439b23a208b65b953280802989.tar.xz
org.eclipse.cdt-d11053223e15b1439b23a208b65b953280802989.zip
Fix for PR 49051
Diffstat (limited to 'launch/org.eclipse.cdt.launch')
-rw-r--r--launch/org.eclipse.cdt.launch/ChangeLog10
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java6
2 files changed, 10 insertions, 6 deletions
diff --git a/launch/org.eclipse.cdt.launch/ChangeLog b/launch/org.eclipse.cdt.launch/ChangeLog
index aa3f3a8d649..46108bfa793 100644
--- a/launch/org.eclipse.cdt.launch/ChangeLog
+++ b/launch/org.eclipse.cdt.launch/ChangeLog
@@ -1,10 +1,14 @@
+2003-12-17 Mikhail Khodjaiants
+ Fix for PR 49051: Launcher: Debugger tab: variable tracking.
+ * CDebuggerTab.java
+
2003-12-16 Alain Magloire
-
+
Choose a debugger base on the Eclipse platform
-
+
* plugin.xml
* src/org/eclipse/cdt/launch/internal/CApplicationlaunchShortcut.java
-
+
2003-10-27
Fixed 46129
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java
index f54ad231d17..2fbdc664550 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java
@@ -104,7 +104,7 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
});
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 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
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 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
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