mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +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
|
@ -877,7 +877,7 @@ void MainWindow::OnImportNANDBackup()
|
|||
.arg((QDateTime::currentDateTime().toMSecsSinceEpoch() - beginning) / 1000));
|
||||
});
|
||||
});
|
||||
QueueOnObject(dialog, [dialog] { dialog->close(); });
|
||||
QueueOnObject(dialog, &QProgressDialog::close);
|
||||
});
|
||||
|
||||
dialog->exec();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue