summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-02-11 11:40:38 -0800
committerKeith Packard <keithp@keithp.com>2013-02-11 11:40:38 -0800
commitbe8eecc4117a14139e4421ce86b67d29a0f0c3d4 (patch)
tree1ba832a2c953d2fff944ef74d6c58c092fd2e085
parent59365eb4e1f63a1ced1667ac233058a06a8eecef (diff)
altosui: Fix AltosLanded call to AltosGraphUI
Changed the argument from String to File but forgot this one. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosLanded.java2
1 files changed, 1 insertions, 1 deletions
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) {
}