diff options
| author | 2020-10-25 11:47:09 -0400 | |
|---|---|---|
| committer | 2020-10-25 11:47:09 -0400 | |
| commit | fe53ee26ce1563e9239cd5be5c33be218d9cf9e9 (patch) | |
| tree | 2261b4db45b1aa79d4199c5f1e57cfc586b52389 /src | |
| parent | Merge pull request #4817 from Kewlan/open-single-save-location (diff) | |
| parent | applets/profile_select: Resolve a warning in exec() (diff) | |
| download | yuzu-fe53ee26ce1563e9239cd5be5c33be218d9cf9e9.tar.gz yuzu-fe53ee26ce1563e9239cd5be5c33be218d9cf9e9.tar.xz yuzu-fe53ee26ce1563e9239cd5be5c33be218d9cf9e9.zip | |
Merge pull request #4826 from Morph1984/resolve-warning
applets/profile_select: Resolve a warning in exec()
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/applets/profile_select.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 68b76269d..c9a2f8601 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp | |||
| @@ -120,7 +120,7 @@ int QtProfileSelectionDialog::exec() { | |||
| 120 | user_index = 0; | 120 | user_index = 0; |
| 121 | return QDialog::Accepted; | 121 | return QDialog::Accepted; |
| 122 | } | 122 | } |
| 123 | QDialog::exec(); | 123 | return QDialog::exec(); |
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | void QtProfileSelectionDialog::accept() { | 126 | void QtProfileSelectionDialog::accept() { |