diff options
author | Keith Packard <keithp@keithp.com> | 2013-01-10 21:48:12 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-01-10 21:48:12 -0800 |
commit | 1ed6b13e87c1cc2d6618b6ba3a293ea6e3b5752e (patch) | |
tree | 10adf6f3c6b6c1ed2bf7540a9972fe72253cfa81 /altosui/AltosFlashUI.java | |
parent | acff2f466031fd1a8533fc315411c3734a8bacc6 (diff) | |
parent | d409417ff8e9ed9d406bf1c04542a4ecb574768b (diff) |
Merge remote-tracking branch 'origin/micropeak-logging'
Diffstat (limited to 'altosui/AltosFlashUI.java')
-rw-r--r-- | altosui/AltosFlashUI.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/altosui/AltosFlashUI.java b/altosui/AltosFlashUI.java index 3ccfa76c..921207bc 100644 --- a/altosui/AltosFlashUI.java +++ b/altosui/AltosFlashUI.java @@ -23,9 +23,10 @@ import javax.swing.*; import javax.swing.filechooser.FileNameExtensionFilter; import java.io.*; import java.util.concurrent.*; +import org.altusmetrum.altosuilib.*; public class AltosFlashUI - extends AltosDialog + extends AltosUIDialog implements ActionListener { Container pane; @@ -175,7 +176,7 @@ public class AltosFlashUI } boolean select_debug_dongle() { - debug_dongle = AltosDeviceDialog.show(frame, Altos.product_any); + debug_dongle = AltosDeviceUIDialog.show(frame, Altos.product_any); if (debug_dongle == null) return false; |