1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Add UNKNOWN state change reason.

This commit is contained in:
Ken Ryall 2010-04-09 16:52:36 +00:00
parent 7c14e3bb49
commit f52ac38667

View file

@ -74,6 +74,8 @@ public class ExecutionContextLabelText extends LabelText {
reasonLabel = MessagesForLaunchVM.State_change_reason__Watchpoint__label;
} else if (StateChangeReason.EVENT_BREAKPOINT.name().equals(reason)) {
reasonLabel = MessagesForLaunchVM.State_change_reason__EventBreakpoint__label;
} else if (StateChangeReason.UNKNOWN.name().equals(reason)) {
reasonLabel = MessagesForLaunchVM.State_change_reason__Unknown__label;
} else {
assert false : "unexpected state change reason: " + reason; //$NON-NLS-1$
}