mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
name of the virtual bin and lib are now
"Binaries" and "Archives" to reduce confusion.
This commit is contained in:
parent
f9b6383d57
commit
3fa2d92083
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
public class ArchiveContainer extends Openable implements IArchiveContainer {
|
||||
|
||||
public ArchiveContainer (CProject cProject) {
|
||||
super (cProject, null, "libraries", CElement.C_VCONTAINER);
|
||||
super (cProject, null, "Archives", CElement.C_VCONTAINER);
|
||||
}
|
||||
|
||||
public IArchive[] getArchives() {
|
||||
|
|
|
@ -17,7 +17,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
public class BinaryContainer extends Openable implements IBinaryContainer {
|
||||
|
||||
public BinaryContainer (CProject cProject) {
|
||||
super (cProject, null, "binaries", CElement.C_VCONTAINER);
|
||||
super (cProject, null, "Binaries", CElement.C_VCONTAINER);
|
||||
}
|
||||
|
||||
public IBinary[] getBinaries() {
|
||||
|
|
Loading…
Add table
Reference in a new issue