From a87cb01935f6ffd7dfbb1e3f35af0c53afa83e5e Mon Sep 17 00:00:00 2001 From: AdenKoperczak Date: Sun, 8 Jun 2025 16:14:30 -0400 Subject: [PATCH] use sys_seconds instead of sys_tim --- scwx-qt/source/scwx/qt/ui/animation_dock_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/ui/animation_dock_widget.cpp b/scwx-qt/source/scwx/qt/ui/animation_dock_widget.cpp index 6714d925..06ba6864 100644 --- a/scwx-qt/source/scwx/qt/ui/animation_dock_widget.cpp +++ b/scwx-qt/source/scwx/qt/ui/animation_dock_widget.cpp @@ -146,7 +146,7 @@ std::chrono::system_clock::time_point AnimationDockWidgetImpl::GetTimePoint() selectedDate_ + selectedTime_; const auto zonedTime = zoned_time(timeZone_, localTime); - const std::chrono::sys_time systemTime = zonedTime.get_sys_time(); + const std::chrono::sys_seconds systemTime = zonedTime.get_sys_time(); // This is done to update it when the date changes UpdateTimeZoneLabel(zonedTime);