diff options
author | Bdale Garbee <bdale@gag.com> | 2016-06-17 10:02:00 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2016-06-17 10:02:00 -0600 |
commit | 085336c45ce0577031a7af5de117a8b856160708 (patch) | |
tree | 13a145eab69e38f2658359fa8395e7257b3c3fb9 /telegps/TeleGPSGraphUI.java | |
parent | 50c9a54ac6b04458970eedfa6d3e0e25f41c765f (diff) | |
parent | 639e461ded29a48c155afea12171cbfc191ccfd7 (diff) |
Merge branch 'branch-1.6' into debian
Diffstat (limited to 'telegps/TeleGPSGraphUI.java')
-rw-r--r-- | telegps/TeleGPSGraphUI.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telegps/TeleGPSGraphUI.java b/telegps/TeleGPSGraphUI.java index 233c8c1a..8e2f6627 100644 --- a/telegps/TeleGPSGraphUI.java +++ b/telegps/TeleGPSGraphUI.java @@ -26,8 +26,8 @@ import javax.swing.*; import java.io.*; import java.util.concurrent.*; import java.util.*; -import org.altusmetrum.altoslib_10.*; -import org.altusmetrum.altosuilib_10.*; +import org.altusmetrum.altoslib_11.*; +import org.altusmetrum.altosuilib_11.*; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; @@ -38,7 +38,7 @@ public class TeleGPSGraphUI extends AltosUIFrame JTabbedPane pane; AltosGraph graph; AltosUIEnable enable; - AltosUIMapNew map; + AltosUIMap map; AltosState state; AltosFlightStats stats; AltosGraphDataSet graphDataSet; @@ -69,7 +69,7 @@ public class TeleGPSGraphUI extends AltosUIFrame graph = new AltosGraph(enable, stats, graphDataSet); statsTable = new AltosFlightStatsTable(stats); - map = new AltosUIMapNew(); + map = new AltosUIMap(); pane.add("Graph", graph.panel); pane.add("Configure Graph", enable); |