Skip to content
Snippets Groups Projects
Commit 9afbcd9e authored by Morph's avatar Morph
Browse files

applets/profile_select: Resolve a warning in exec()

Resolves a warning where not all control paths return a value.
parent ab052cf6
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ int QtProfileSelectionDialog::exec() { ...@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment