1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

name of the virtual bin and lib are now

"Binaries" and "Archives" to reduce confusion.
This commit is contained in:
Alain Magloire 2003-03-27 20:07:36 +00:00
parent f9b6383d57
commit 3fa2d92083
2 changed files with 2 additions and 2 deletions

View file

@ -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() {

View file

@ -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() {