diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c16cb20..aa8f829 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,6 +67,7 @@ namespace { // create the live objects auto live_settings = std::make_shared<LiveSettings>(); + auto live_timezones = std::make_shared<LiveTimezones>(live_settings, TIMEZONE_FILE); auto live_clock = std::make_shared<LiveClock>(timezone_); // create a full-month planner currently pointing to the current month @@ -79,7 +80,6 @@ namespace auto calendar_upcoming = std::make_shared<UpcomingPlanner>(range_planner, now); // create the state - auto live_timezones = std::make_shared<LiveTimezones>(live_settings, TIMEZONE_FILE); auto state = std::make_shared<State>(); state->settings = live_settings; state->clock = live_clock; |