1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

setAutoSolib() with an argument.

This commit is contained in:
Alain Magloire 2003-01-03 20:29:16 +00:00
parent 45672abbc7
commit eb75e1b50d

View file

@ -89,10 +89,10 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
}
}
public void setAutoSolib() throws CDIException {
public void setAutoSolib(boolean set) throws CDIException {
MISession mi = getCSession().getMISession();
CommandFactory factory = mi.getCommandFactory();
MIGDBSetAutoSolib solib = factory.createMIGDBSetAutoSolib(true);
MIGDBSetAutoSolib solib = factory.createMIGDBSetAutoSolib(set);
try {
mi.postCommand(solib);
solib.getMIInfo();