diff options
author | Keith Packard <keithp@keithp.com> | 2017-05-27 23:34:18 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-05-27 23:34:18 -0700 |
commit | 9e17d3be199d14473d8a7f9b899c290518b879a6 (patch) | |
tree | f272960d9f99456278d636caeeeaca056fa57e5f /altosui | |
parent | a1d76d5568f8386c52704d69507132de23ea591f (diff) |
altosuilib: Remove 'cal_data' param from AltosGraphNew constructor
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui')
-rw-r--r-- | altosui/AltosGraphUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index 71aa0e6f..9b47211d 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -99,7 +99,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt stats = new AltosFlightStats(flight_series); - graph = new AltosGraphNew(enable, stats, flight_series, cal_data); + graph = new AltosGraphNew(enable, stats, flight_series); statsTable = new AltosFlightStatsTable(stats); |