1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-26 05:56:33 -05:00

Merge pull request #4826 from Morph1984/resolve-warning

applets/profile_select: Resolve a warning in exec()
This commit is contained in:
LC
2020-10-25 11:47:09 -04:00
committed by GitHub

View File

@@ -120,7 +120,7 @@ int QtProfileSelectionDialog::exec() {
user_index = 0; user_index = 0;
return QDialog::Accepted; return QDialog::Accepted;
} }
QDialog::exec(); return QDialog::exec();
} }
void QtProfileSelectionDialog::accept() { void QtProfileSelectionDialog::accept() {