Browse Source

applets/profile_select: Resolve a warning in exec()

Resolves a warning where not all control paths return a value.
nce_cpp
Morph 5 years ago
parent
commit
5bdd042c3e
  1. 2
      src/yuzu/applets/profile_select.cpp

2
src/yuzu/applets/profile_select.cpp

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

Loading…
Cancel
Save