1
0
Fork 0
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:
Alain Magloire 2002-10-10 11:49:24 +00:00
parent dd2ebb3c74
commit 1d78db05eb

View file

@ -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"});
}
}