| Summary: | watched variables are not remembered between debug sessions | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Caleb Tennis <caleb> |
| Component: | CPP Debugger | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Caleb Tennis
2003-02-27 15:32:03 UTC
*** Bug 55282 has been marked as a duplicate of this bug. *** Subject: kdevelop/parts/debugger CVS commit by amantia: Remember watch variables between sessions. This was an oftern reported bug, and I don't see the reason behind why wasn't fixed until now... CCMAIL: 55281-done@bugs.kde.org CCMAIL: 6472-done@bugs.kde.org CCMAIL: 31457-done@bugs.kde.org M +1 -1 debuggerpart.cpp 1.53 --- kdevelop/parts/debugger/debuggerpart.cpp #1.52:1.53 @@ -531,5 +531,5 @@ void DebuggerPart::stopDebugger() breakpointWidget->reset(); framestackWidget->clear(); - variableWidget->clear(); + //variableWidget->clear(); //any reason why this should be cleared? It removes the watched variables, which is bad. (Andras) disassembleWidget->clear(); disassembleWidget->slotActivate(false); |