1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Bug 133964: getBinary() method in CDebuggerTab always returns null.

This commit is contained in:
Mikhail Khodjaiants 2006-05-23 21:42:12 +00:00
parent 326fcbaa4f
commit 3582f6f800
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-05-23 Mikhail Khodjaiants
Bug 133964: getBinary() method in CDebuggerTab always returns null.
* CDebuggerTab.java
2006-05-17 Mikhail Khodjaiants
Moved the new static methods from AbstractCLaunchDelegate to the new utility class.
* AbstractCLaunchDelegate.java

View file

@ -295,6 +295,9 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
IPath exePath = new Path(programName);
if (projectName != null && !projectName.equals("")) { //$NON-NLS-1$
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
if (!exePath.isAbsolute()) {
exePath = project.getLocation().append(exePath);
}
ICExtensionReference[] parserRef = CCorePlugin.getDefault().getBinaryParserExtensions(project);
for (int i = 0; i < parserRef.length; i++) {
try {