Don't use 'else' after return/break

This commit is contained in:
thalieht
2019-02-12 20:05:01 +02:00
parent 78ab0e4ba9
commit 8a3f942385
15 changed files with 75 additions and 83 deletions

View File

@@ -147,9 +147,8 @@ bool PiecesBar::event(QEvent *e)
showToolTip(static_cast<QHelpEvent *>(e));
return true;
}
else {
return base::event(e);
}
return base::event(e);
}
void PiecesBar::enterEvent(QEvent *e)