1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

Fix for bug 134581: Unable to set advanced debugger options.

This commit is contained in:
Mikhail Khodjaiants 2006-04-03 19:00:30 +00:00
parent 0c247b1d5f
commit 81cc0b0322
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2006-04-03 Mikhail Khodjaiants
Fix for bug 134581: Unable to set advanced debugger options.
* CDebuggerTab.java
2006-03-29 Mikhail Khodjaiants
Made some generic methods static.
* AbstractCLaunchDelegate.java

View file

@ -101,9 +101,9 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
private void saveValues() {
Map attr = getAdvancedAttributes();
Boolean varBookkeeping = Boolean.valueOf( fVarBookKeeping.getSelection() );
Boolean varBookkeeping = Boolean.valueOf( !fVarBookKeeping.getSelection() );
attr.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING, varBookkeeping);
Boolean regBookkeeping = Boolean.valueOf( fRegBookKeeping.getSelection() );
Boolean regBookkeeping = Boolean.valueOf( !fRegBookKeeping.getSelection() );
attr.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ENABLE_REGISTER_BOOKKEEPING, regBookkeeping);
update();
}