Qt: Deprecate proccessEvents() usage

This commit is contained in:
Elad 2024-11-24 09:23:32 +02:00
parent 3e427c57f0
commit fce07bbeab
9 changed files with 215 additions and 221 deletions

View file

@ -577,8 +577,12 @@ void gui_application::InitializeCallbacks()
callbacks.on_missing_fw = [this]()
{
if (!m_main_window) return false;
return m_main_window->OnMissingFw();
if (!m_main_window)
{
return;
}
m_main_window->OnMissingFw();
};
callbacks.handle_taskbar_progress = [this](s32 type, s32 value)