QProgressDialog abstractor, more moving

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-09-13 11:39:10 -04:00
parent 2d94767f96
commit 8974aed013
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6
27 changed files with 580 additions and 526 deletions

View file

@ -10,11 +10,8 @@
namespace QtCommon::Frontend {
QMessageBox::StandardButton ShowMessage(QMessageBox::Icon icon,
const QString &title,
const QString &text,
QMessageBox::StandardButtons buttons,
QObject *parent)
StandardButton ShowMessage(
Icon icon, const QString &title, const QString &text, StandardButtons buttons, QObject *parent)
{
#ifdef YUZU_QT_WIDGETS
QMessageBox *box = new QMessageBox(icon, title, text, buttons, (QWidget *) parent);