From 2fe6ba61499e77b7f81da0483dba9a634e47c048 Mon Sep 17 00:00:00 2001 From: Pawel Piech Date: Tue, 9 Sep 2008 21:33:16 +0000 Subject: [PATCH] [246763] - [debug view] Debug view missing an update after running the program --- .../src/org/eclipse/dd/mi/service/MIStack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/MIStack.java b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/MIStack.java index a2f58aa0664..f05b46d755c 100644 --- a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/MIStack.java +++ b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/MIStack.java @@ -221,7 +221,7 @@ public class MIStack extends AbstractDsfService // Make sure the thread is stopped if (!fRunControl.isSuspended(execDmc)) { - rm.setData(new IFrameDMContext[0]); + rm.setStatus(new Status(IStatus.ERROR, MIPlugin.PLUGIN_ID, INVALID_STATE, "Context is running: " + ctx, null)); //$NON-NLS-1$ rm.done(); return; }