Refactoring: early return

This commit is contained in:
Daniel Marjamäki 2018-08-08 09:00:04 +02:00
parent 80290a15e0
commit 90a3759479
1 changed files with 19 additions and 20 deletions

View File

@ -1650,7 +1650,8 @@ void MainWindow::enableProjectOpenActions(bool enable)
void MainWindow::openRecentProject()
{
QAction *action = qobject_cast<QAction *>(sender());
if (action) {
if (!action)
return;
const QString project = action->data().toString();
QFileInfo inf(project);
if (inf.exists()) {
@ -1671,8 +1672,6 @@ void MainWindow::openRecentProject()
if (rv == QMessageBox::Yes) {
removeProjectMRU(project);
}
}
}
}