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/AltosScanUI.java | |
parent | 605b752080827bb59fcff5af9f1eab9fd5dad76b (diff) |
altosui: Use shared AltosDeviceDialog
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosScanUI.java')
-rw-r--r-- | altosui/AltosScanUI.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/altosui/AltosScanUI.java b/altosui/AltosScanUI.java index 2a6e140a..6a8db0e0 100644 --- a/altosui/AltosScanUI.java +++ b/altosui/AltosScanUI.java @@ -26,6 +26,7 @@ import java.util.*; import java.text.*; import java.util.concurrent.*; import org.altusmetrum.AltosLib.*; +import org.altusmetrum.altosuilib.*; class AltosScanResult { String callsign; @@ -327,7 +328,7 @@ public class AltosScanUI } private boolean open() { - device = AltosDeviceDialog.show(owner, Altos.product_basestation); + device = AltosDeviceUIDialog.show(owner, Altos.product_basestation); if (device == null) return false; try { |