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:
parent
7c14e3bb49
commit
f52ac38667
1 changed files with 2 additions and 0 deletions
|
@ -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$
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue