altosui: Add a 'Graph Flight' button to the 'landed' tab
[fw/altos] / altosui / AltosFlightStats.java
index e38142f04de27d8c515ef0e437d5ee8f816920ef..e644b0bab73db07b6fd45bad7fc406f6ee1f6750 100644 (file)
@@ -85,11 +85,11 @@ public class AltosFlightStats {
                }
        }
 
-       public AltosFlightStats(AltosRecordIterable iterable, String filename) throws InterruptedException, IOException {
-               this(new AltosReplayReader(iterable.iterator(), filename));
+       public AltosFlightStats(AltosRecordIterable iterable, File file) throws InterruptedException, IOException {
+               this(new AltosReplayReader(iterable.iterator(), file));
        }
 
        public AltosFlightStats(AltosRecordIterable iterable) throws InterruptedException, IOException {
-               this(iterable, "");
+               this(iterable, new File(""));
        }
 }