Browse Source
Merge pull request #4826 from Morph1984/resolve-warning
applets/profile_select: Resolve a warning in exec()
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/applets/profile_select.cpp
|
|
@ -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() { |
|
|
|