altosui: Deliver firmware for Tmega 2.0 and TBT 3.0 for Windows too
[fw/altos] / altosui / AltosLaunchUI.java
index 39b986c0a129f0dde62a7533be54027bd9bb3ea9..22608c1b74066a0f8bafd9bf4ba5461ccb919062 100644 (file)
@@ -23,6 +23,7 @@ import javax.swing.*;
 import java.io.*;
 import java.text.*;
 import java.util.concurrent.*;
+import org.altusmetrum.altosuilib_11.*;
 
 class FireButton extends JButton {
        protected void processMouseEvent(MouseEvent e) {
@@ -45,7 +46,7 @@ class FireButton extends JButton {
 }
 
 public class AltosLaunchUI
-       extends AltosDialog
+       extends AltosUIDialog
        implements ActionListener
 {
        AltosDevice     device;
@@ -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);