mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
make default MakeAction for build "all"
This commit is contained in:
parent
c4b64b397d
commit
7a85d3715d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-10-23 David Inglis
|
||||
|
||||
* src/.../internal/ui/cview/CView.java:
|
||||
- put "all" target in default MakeAction.
|
||||
|
||||
2002-10-21 Judy N. Green
|
||||
|
||||
Added a selection changed listener to the textViewer
|
||||
|
|
|
@ -727,7 +727,7 @@ public class CView extends ViewPart implements IMenuListener, ISetSelectionTarge
|
|||
boolean isContainer = (resource instanceof IContainer);
|
||||
if (isContainer) {
|
||||
MakeTarget[] aBuild = new MakeTarget[1];
|
||||
aBuild[0] = new MakeTarget(resource, "");
|
||||
aBuild[0] = new MakeTarget(resource, "all");
|
||||
menu.add(new MakeAction(aBuild, getViewSite().getShell(), "Build"));
|
||||
|
||||
MakeTarget[] aReBuild = new MakeTarget[1];
|
||||
|
|
Loading…
Add table
Reference in a new issue