Avoid deprecated ListBox constructor

This commit is contained in:
Sean Owen 2014-10-21 17:16:24 +01:00
parent ba8b74feae
commit 1b3f32f54b

View file

@ -36,7 +36,7 @@ public final class WifiGenerator implements GeneratorSource {
private Grid table; private Grid table;
private final TextBox ssid = new TextBox(); private final TextBox ssid = new TextBox();
private final TextBox password = new TextBox(); private final TextBox password = new TextBox();
private final ListBox networkType = new ListBox(false); private final ListBox networkType = new ListBox();
private final CheckBox hidden = new CheckBox(); private final CheckBox hidden = new CheckBox();
public WifiGenerator(ChangeHandler handler, KeyPressHandler keyListener) { public WifiGenerator(ChangeHandler handler, KeyPressHandler keyListener) {