Don't use return keyword when not necessary

Change-Id: I4b9fad1eee60e942ddbccda53a4af27e978df498
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Montel Laurent
2017-04-14 12:06:24 +02:00
committed by Laurent Montel
parent 660c4ced86
commit f18ae4ff6f
10 changed files with 26 additions and 18 deletions

View File

@@ -62,7 +62,7 @@ void CompletingLineEdit::keyPressEvent(QKeyEvent *e)
comp->complete();
}
}
return QLineEdit::keyPressEvent(e);
QLineEdit::keyPressEvent(e);
}
} // namespace Utils