1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Fix for Bug 126025: CApplicationLaunchShortcut call to DebugUITools.saveAndBuild invokes workspace wide build unnecessarily. Applied patch from Andrew Ferguson (ARM).

This commit is contained in:
Mikhail Khodjaiants 2006-02-27 19:50:45 +00:00
parent 61c6b0788f
commit 76e299dfbf
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-02-27 Mikhail Khodjaiants
Fix for Bug 126025: CApplicationLaunchShortcut call to DebugUITools.saveAndBuild
invokes workspace wide build unnecessarily.
Applied patch from Andrew Ferguson (ARM).
* CApplicationLaunchShortcut.java
2006-02-03 Mikhail Khodjaiants 2006-02-03 Mikhail Khodjaiants
NPE in CDebuggerTab when attaching to a target. NPE in CDebuggerTab when attaching to a target.
* CDebuggerTab.java * CDebuggerTab.java

View file

@ -69,7 +69,6 @@ public class CApplicationLaunchShortcut implements ILaunchShortcut {
public void launch(IBinary bin, String mode) { public void launch(IBinary bin, String mode) {
ILaunchConfiguration config = findLaunchConfiguration(bin, mode); ILaunchConfiguration config = findLaunchConfiguration(bin, mode);
if (config != null) { if (config != null) {
DebugUITools.saveAndBuildBeforeLaunch();
DebugUITools.launch(config, mode); DebugUITools.launch(config, mode);
} }
} }