From: Keith Packard Date: Mon, 11 Feb 2013 19:40:38 +0000 (-0800) Subject: altosui: Fix AltosLanded call to AltosGraphUI X-Git-Tag: altosdroid_v1.2-1~108 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=be8eecc4117a14139e4421ce86b67d29a0f0c3d4 altosui: Fix AltosLanded call to AltosGraphUI Changed the argument from String to File but forgot this one. Signed-off-by: Keith Packard --- diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 3994e5de..e13229a8 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -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) { }