mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +00:00
QueueOnObject: accept pointers to member functions
This commit is contained in:
parent
7cb8d6612c
commit
1e27e87d93
3 changed files with 4 additions and 4 deletions
|
@ -405,7 +405,7 @@ void NetPlayDialog::StopGame()
|
|||
|
||||
void NetPlayDialog::Update()
|
||||
{
|
||||
QueueOnObject(this, [this] { UpdateGUI(); });
|
||||
QueueOnObject(this, &NetPlayDialog::UpdateGUI);
|
||||
}
|
||||
|
||||
void NetPlayDialog::DisplayMessage(const QString& msg, const std::string& color, int duration)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue