1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-15 04:05:38 +02:00

Fixed 'Step Into' for stack frame.

This commit is contained in:
Mikhail Khodjaiants 2002-09-03 15:19:41 +00:00
parent 3da18a28f5
commit a5e7b14cc5

View file

@ -309,7 +309,7 @@ public class CStackFrame extends CDebugElement
*/
public void stepInto() throws DebugException
{
if ( !canStepInto() )
if ( canStepInto() )
{
getThread().stepInto();
}