Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorAnton Leherbauer2009-03-24 09:42:56 +0000
committerAnton Leherbauer2009-03-24 09:42:56 +0000
commit30c1dc4f38428179b2a3bfc4c03ba60cf07cc7eb (patch)
tree99887bfb61a812dd0db53ebbad693555c6c0090e /dsf
parentd66a77965a2cc41e1a1fb61d761d69d50373a676 (diff)
downloadorg.eclipse.cdt-30c1dc4f38428179b2a3bfc4c03ba60cf07cc7eb.tar.gz
org.eclipse.cdt-30c1dc4f38428179b2a3bfc4c03ba60cf07cc7eb.tar.xz
org.eclipse.cdt-30c1dc4f38428179b2a3bfc4c03ba60cf07cc7eb.zip
[269767] [view model] LaunchRootVMNode misses a done()
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java
index b653a57542b..35a99d081ed 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java
+++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2008 Wind River Systems and others.
+ * Copyright (c) 2006, 2009 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -94,6 +94,7 @@ public class LaunchRootVMNode extends RootVMNode
public void createRootDelta(Object rootObject, Object event, final DataRequestMonitor<VMDelta> rm) {
if (!(rootObject instanceof ILaunch)) {
rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.INVALID_STATE, "Invalid root element configured with launch root node.", null)); //$NON-NLS-1$
+ rm.done();
return;
}

Back to the top