altosuilib: Remove old map bits
[fw/altos] / altosui / AltosGraphUI.java
index 42a1765833426aab6f50f6830c648e41ad13d6d9..705436107ba3916842050542e49609ecca21ce9b 100644 (file)
@@ -35,7 +35,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
        JTabbedPane             pane;
        AltosGraph              graph;
        AltosUIEnable           enable;
-       AltosUIMap              map;
+       AltosUIMapNew           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 AltosUIMap();
+                                       map = new AltosUIMapNew();
                                map.show(state, null);
                                has_gps = true;
                        }