1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

bug fix CONTINUE was the same as NEXT.

This commit is contained in:
Alain Magloire 2002-08-20 18:29:59 +00:00
parent 51a1bd68e6
commit a96bbc512e

View file

@ -14,7 +14,7 @@ import org.eclipse.cdt.debug.mi.core.output.MIValue;
*/
public class MIRunningEvent extends MIEvent {
public static final int CONTINUE = 1;
public static final int CONTINUE = 0;
public static final int NEXT = 1;
public static final int NEXTI = 2;
public static final int STEP = 3;