mirror of
https://github.com/zxing/zxing.git
synced 2025-01-13 04:07:27 -08:00
Avoid deprecated ListBox constructor
This commit is contained in:
parent
ba8b74feae
commit
1b3f32f54b
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue