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:
parent
45672abbc7
commit
eb75e1b50d
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue