From 25bfd919d814f47ab222bbb4671b1932cdc3d160 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Mon, 17 Feb 2025 13:16:51 +0100 Subject: [PATCH] Missing declaration fix --- src/slic3r/GUI/UserAccountCommunication.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/UserAccountCommunication.hpp b/src/slic3r/GUI/UserAccountCommunication.hpp index 0ddcf13dc5..458857255e 100644 --- a/src/slic3r/GUI/UserAccountCommunication.hpp +++ b/src/slic3r/GUI/UserAccountCommunication.hpp @@ -118,8 +118,8 @@ private: std::string client_id() const { return Utils::ServiceConfig::instance().account_client_id(); } // master / slave logic - wxTimer* m_slave_read_timer; // T2 timer - wxTimer* m_after_race_lost_timer; // T5 timer + std::unique_ptr m_slave_read_timer; // T2 timer + std::unique_ptr m_after_race_lost_timer; // T5 timer int m_last_token_duration_seconds {0}; void on_slave_read_timer(wxTimerEvent& evt); // T2