# HG changeset patch # User wpaul # Date 1244489166 18000 # Node ID a32fb2f6b0655e4546b62d755617741c6f524dd3 # Parent ee14f3fff9eff226a0413dc83e6db59134f99013 fixed bug #9235. diff -r ee14f3fff9ef -r a32fb2f6b065 debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Mon Jun 08 13:47:39 2009 -0500 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Mon Jun 08 14:26:06 2009 -0500 @@ -405,7 +405,7 @@ // ignore 'urel', 'udeb' and 'lib' directories when getting the binaries for the same target // removeLastSegments(2) will strip the filename and 'urel', 'udeb' or 'lib' IPath launchExeTargetPath = new Path(new File(launchExeName).getCanonicalPath()).removeLastSegments(2); - for (Executable executable : ExecutablesManager.getExecutablesManager().getExecutables()) { + for (Executable executable : ExecutablesManager.getExecutablesManager().getExecutables(true)) { IPath exePath = executable.getPath(); if (launchExeTargetPath.isPrefixOf(exePath)) files.add(new ExeFileToDebug(exePath.toOSString(), true));