altosui: Use shared AltosDeviceDialog
[fw/altos] / altosui / AltosIgniteUI.java
index ec331259c73531d69946bdd1e00fe341e041bde5..f1742203308eb0e2b3dac8882dcf26e13acc7010 100644 (file)
@@ -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);