diff options
| author | Keith Packard <keithp@keithp.com> | 2013-01-02 09:31:35 -0800 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-01-02 09:31:35 -0800 |
| commit | 8af405f1ac4d1b930f10465fd0270a49176f16d1 (patch) | |
| tree | dc3fa941a8ee16e009c39593b41906580150eec9 /altosui/AltosIgniteUI.java | |
| parent | 605b752080827bb59fcff5af9f1eab9fd5dad76b (diff) | |
altosui: Use shared AltosDeviceDialog
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosIgniteUI.java')
| -rw-r--r-- | altosui/AltosIgniteUI.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/altosui/AltosIgniteUI.java b/altosui/AltosIgniteUI.java index ec331259..f1742203 100644 --- a/altosui/AltosIgniteUI.java +++ b/altosui/AltosIgniteUI.java @@ -24,6 +24,7 @@ import java.io.*; import java.text.*; import java.util.concurrent.*; import org.altusmetrum.AltosLib.*; +import org.altusmetrum.altosuilib.*; public class AltosIgniteUI extends AltosDialog @@ -304,7 +305,7 @@ public class AltosIgniteUI private boolean open() { command_queue = new LinkedBlockingQueue<String>(); - device = AltosDeviceDialog.show(owner, Altos.product_any); + device = AltosDeviceUIDialog.show(owner, Altos.product_any); if (device != null) { IgniteHandler handler = new IgniteHandler(owner); Thread t = new Thread(handler); |
