summaryrefslogtreecommitdiff
path: root/altosui/AltosLaunchUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-01-02 09:31:35 -0800
committerKeith Packard <keithp@keithp.com>2013-01-02 09:31:35 -0800
commit8af405f1ac4d1b930f10465fd0270a49176f16d1 (patch)
treedc3fa941a8ee16e009c39593b41906580150eec9 /altosui/AltosLaunchUI.java
parent605b752080827bb59fcff5af9f1eab9fd5dad76b (diff)
altosui: Use shared AltosDeviceDialog
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosLaunchUI.java')
-rw-r--r--altosui/AltosLaunchUI.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/altosui/AltosLaunchUI.java b/altosui/AltosLaunchUI.java
index 39b986c0..68c978dc 100644
--- a/altosui/AltosLaunchUI.java
+++ b/altosui/AltosLaunchUI.java
@@ -23,6 +23,7 @@ import javax.swing.*;
import java.io.*;
import java.text.*;
import java.util.concurrent.*;
+import org.altusmetrum.altosuilib.*;
class FireButton extends JButton {
protected void processMouseEvent(MouseEvent e) {
@@ -370,7 +371,7 @@ public class AltosLaunchUI
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) {
LaunchHandler handler = new LaunchHandler(owner);
Thread t = new Thread(handler);