mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
checjk for ICDISession
This commit is contained in:
parent
d11b492c7c
commit
f8f4d2617f
1 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@ import org.eclipse.cdt.debug.core.IStackFrameInfo;
|
|||
import org.eclipse.cdt.debug.core.IState;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDIBreakpointHit;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDISignal;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDIWatchpointScope;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDIWatchpointTrigger;
|
||||
|
@ -362,7 +363,7 @@ public class CDTDebugModelPresentation extends LabelProvider
|
|||
{
|
||||
return target.getName() + " (Breakpoint hit)";
|
||||
}
|
||||
if ( info == null )
|
||||
if ( info != null && info instanceof ICDISession )
|
||||
{
|
||||
return target.getName() + " (Suspended)";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue