From 30c1dc4f38428179b2a3bfc4c03ba60cf07cc7eb Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Tue, 24 Mar 2009 09:42:56 +0000 Subject: [PATCH] [269767] [view model] LaunchRootVMNode misses a done() --- .../cdt/dsf/debug/ui/viewmodel/launch/LaunchRootVMNode.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 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; }