mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 03:53:21 +02:00
Merge fix for bug 155129 from 3_1.
This commit is contained in:
parent
af1d76d4e3
commit
8abe95052b
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ public class CStackFrame extends CDebugElement implements ICStackFrame, IRestart
|
|||
*/
|
||||
public boolean canEvaluate() {
|
||||
CDebugTarget target = ((CDebugTarget)getDebugTarget());
|
||||
return target.supportsExpressionEvaluation() && target.isSuspended();
|
||||
return target.supportsExpressionEvaluation() && isSuspended();
|
||||
}
|
||||
|
||||
protected void doStepReturn() throws DebugException {
|
||||
|
|
Loading…
Add table
Reference in a new issue