1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-16 12:45:41 +02:00

- make addDirectory protected so somebody can override it if needed, added getter for fDirList

This commit is contained in:
Alena Laskavaia 2008-11-24 20:50:16 +00:00
parent 729b639f75
commit 5ca327814c

View file

@ -369,7 +369,10 @@ public class SolibSearchPathBlock extends Observable implements IMILaunchConfigu
return fShell;
}
private boolean addDirectory() {
protected DialogField getDirList(){
return fDirList;
}
protected boolean addDirectory() {
boolean changed = false;
AddDirectoryDialog dialog = new AddDirectoryDialog( getShell() );
dialog.open();