1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

Merge fix for bug 155129 from 3_1.

This commit is contained in:
Ken Ryall 2006-08-24 22:39:22 +00:00
parent af1d76d4e3
commit 8abe95052b

View file

@ -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 {