mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
Qt: Deprecate proccessEvents() usage
This commit is contained in:
parent
3e427c57f0
commit
fce07bbeab
9 changed files with 215 additions and 221 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue