mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
MIGDBSetAutoSolib takes "on" or "off"
This commit is contained in:
parent
dd2ebb3c74
commit
1d78db05eb
1 changed files with 1 additions and 1 deletions
|
@ -15,6 +15,6 @@ package org.eclipse.cdt.debug.mi.core.command;
|
|||
*/
|
||||
public class MIGDBSetAutoSolib extends MIGDBSet {
|
||||
public MIGDBSetAutoSolib(boolean isSet) {
|
||||
super(new String[] {"auto-solib-add", (isSet) ? "1" : "0"});
|
||||
super(new String[] {"auto-solib-add", (isSet) ? "on" : "off"});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue