mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 03:15:33 +02:00
Do not use the cache stackframe.
* src/org/eclipse/cdt/debug/internal/core/model/CThread.java
This commit is contained in:
parent
1b5eec7318
commit
8589466f8a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-06-29 Alain Magloire
|
||||
|
||||
Do not use the cache stackframe.
|
||||
* src/org/eclipse/cdt/debug/internal/core/model/CThread.java
|
||||
|
||||
2004-06-29 Mikhail Khodjaiants
|
||||
Temporary fix for bug 68915: Invalid values in the Variables view.
|
||||
* CStackFrame.java
|
||||
|
|
|
@ -1011,7 +1011,7 @@ public class CThread extends CDebugElement
|
|||
*/
|
||||
public void switchToFrame( IStackFrame frame ) throws DebugException
|
||||
{
|
||||
if ( frame == null || !(frame instanceof CStackFrame) || frame.equals( getLastStackFrame() ) )
|
||||
if ( frame == null || !(frame instanceof CStackFrame) /*|| frame.equals( getLastStackFrame() )*/ )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue