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();
|
MISession mi = getCSession().getMISession();
|
||||||
CommandFactory factory = mi.getCommandFactory();
|
CommandFactory factory = mi.getCommandFactory();
|
||||||
MIGDBSetAutoSolib solib = factory.createMIGDBSetAutoSolib(true);
|
MIGDBSetAutoSolib solib = factory.createMIGDBSetAutoSolib(set);
|
||||||
try {
|
try {
|
||||||
mi.postCommand(solib);
|
mi.postCommand(solib);
|
||||||
solib.getMIInfo();
|
solib.getMIInfo();
|
||||||
|
|
Loading…
Add table
Reference in a new issue