altosui: Fix AltosLanded call to AltosGraphUI
authorKeith Packard <keithp@keithp.com>
Mon, 11 Feb 2013 19:40:38 +0000 (11:40 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 11 Feb 2013 19:40:38 +0000 (11:40 -0800)
Changed the argument from String to File but forgot this one.

Signed-off-by: Keith Packard <keithp@keithp.com>
altosui/AltosLanded.java

index 3994e5de9638c77d28e1f618015cca4b84b7dec5..e13229a898150dd3fcca91fded2ab52316af6593 100644 (file)
@@ -257,7 +257,7 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio
                                                throw new FileNotFoundException(filename);
                                        }
                                        try {
-                                               new AltosGraphUI(records, filename);
+                                               new AltosGraphUI(records, file);
                                        } catch (InterruptedException ie) {
                                        } catch (IOException ie) {
                                        }