From 06c10e1f7e8349d91a18995cdd3765e15147038e Mon Sep 17 00:00:00 2001 From: Ken Ryall Date: Tue, 9 Mar 2010 05:25:00 +0000 Subject: [PATCH] Use the super's verifyCProject. --- .../org/eclipse/cdt/dsf/gdb/launching/GdbLaunchDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunchDelegate.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunchDelegate.java index 839ca45951e..918741ebf98 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunchDelegate.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunchDelegate.java @@ -208,7 +208,7 @@ public class GdbLaunchDelegate extends AbstractCLaunchDelegate2 */ protected IPath checkBinaryDetails(final ILaunchConfiguration config) throws CoreException { // First verify we are dealing with a proper project. - ICProject project = LaunchUtils.verifyCProject(config); + ICProject project = verifyCProject(config); // Now verify we know the program to debug. IPath exePath = LaunchUtils.verifyProgramPath(config, project); // Finally, make sure the program is a proper binary.