change name of tabs to use "Test" instead of "Flight"
[fw/altos] / teststand / AltosGraphUI.java
index 1db2c6c021b36ed1e0f96846a33b8e384a626abb..ed77bdefcd56bed01e9d0a4960692b18cee4d262 100644 (file)
@@ -34,7 +34,7 @@ import org.jfree.ui.RefineryUtilities;
 public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, AltosUnitsListener, AltosFilterListener
 {
        JTabbedPane             pane;
-       AltosGraph              graph;
+       TestStandGraph          graph;
        AltosUIEnable           enable;
        AltosFlightStats        stats;
        AltosFlightStatsTable   statsTable;
@@ -85,13 +85,13 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
 
                stats = new AltosFlightStats(flight_series);
 
-               graph = new AltosGraph(enable, stats, flight_series);
+               graph = new TestStandGraph(enable, stats, flight_series);
 
                statsTable = new AltosFlightStatsTable(stats);
 
-               pane.add("Flight Graph", graph.panel);
+               pane.add("Test Graph", graph.panel);
                pane.add("Configure Graph", enable);
-               pane.add("Flight Statistics", statsTable);
+               pane.add("Test Statistics", statsTable);
 
                has_gps = false;