summaryrefslogtreecommitdiff
path: root/altosui/AltosGraphUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-05-24 23:44:50 -0700
committerKeith Packard <keithp@keithp.com>2016-05-24 23:44:50 -0700
commit0d966b74f756e88e5dffa92400b105f540429262 (patch)
tree5d11b74ebb6e7ce0062d5713396f531bf2fcf4eb /altosui/AltosGraphUI.java
parent59a9bdd73b580a9c934a574be7bf45c5033e14b5 (diff)
altosuilib: Rename AltosUIMap*New.java to AltosUIMap*.java
This code isn't really new anymore... Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosGraphUI.java')
-rw-r--r--altosui/AltosGraphUI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java
index be63c6e6..32b59977 100644
--- a/altosui/AltosGraphUI.java
+++ b/altosui/AltosGraphUI.java
@@ -35,7 +35,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
JTabbedPane pane;
AltosGraph graph;
AltosUIEnable enable;
- AltosUIMapNew map;
+ AltosUIMap map;
AltosState state;
AltosGraphDataSet graphDataSet;
AltosFlightStats stats;
@@ -47,7 +47,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
for (AltosState state : states) {
if (state.gps != null && state.gps.locked && state.gps.nsat >= 4) {
if (map == null)
- map = new AltosUIMapNew();
+ map = new AltosUIMap();
map.show(state, null);
has_gps = true;
}