From be8eecc4117a14139e4421ce86b67d29a0f0c3d4 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 11 Feb 2013 11:40:38 -0800 Subject: [PATCH] altosui: Fix AltosLanded call to AltosGraphUI Changed the argument from String to File but forgot this one. Signed-off-by: Keith Packard --- altosui/AltosLanded.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { } -- 2.30.2