After rebase changes

This commit is contained in:
David Kocik 2025-02-17 13:07:19 +01:00 committed by Lukas Matena
parent bd3c863d87
commit 48a536fa9d
2 changed files with 2 additions and 3 deletions

View File

@ -243,8 +243,8 @@ UserAccountCommunication::UserAccountCommunication(wxEvtHandler* evt_handler, Ap
, m_app_config(app_config)
, m_polling_timer(std::make_unique<wxTimer>(this))
, m_token_timer(std::make_unique<wxTimer>(this))
, m_slave_read_timer(new wxTimer(this))
, m_after_race_lost_timer(new wxTimer(this))
, m_slave_read_timer(std::make_unique<wxTimer>(this))
, m_after_race_lost_timer(std::make_unique<wxTimer>(this))
{
Bind(wxEVT_TIMER, &UserAccountCommunication::on_token_timer, this, m_token_timer->GetId());
Bind(wxEVT_TIMER, &UserAccountCommunication::on_polling_timer, this, m_polling_timer->GetId());

View File

@ -221,7 +221,6 @@ private:
void on_printables_event_slice_file(const std::string& message_data);
void on_printables_event_required_login(const std::string& message_data);
void on_printables_event_open_url(const std::string& message_data);
void on_dummy_event(const std::string& message_data) {}
void load_default_url() override;
std::string get_url_lang_theme(const wxString& url) const;
void show_download_notification(const std::string& filename);