diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-27 16:05:24 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-27 16:05:24 -0700 |
commit | ee8f7de4e7fb8183c9a34dcab8ab88b96255af8d (patch) | |
tree | 34a8c1fd9de0bed06ca39513b3de0c623b9d7d5b | |
parent | 9f86468c00bb1e1c9c904a1142d7406dc86af28d (diff) | |
download | subsurface-ee8f7de4e7fb8183c9a34dcab8ab88b96255af8d.tar.gz |
Add missing return statement
We act on the event but don't consume it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/locationinformation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/locationinformation.cpp b/qt-ui/locationinformation.cpp index a63571a35..b3907a89a 100644 --- a/qt-ui/locationinformation.cpp +++ b/qt-ui/locationinformation.cpp @@ -251,6 +251,7 @@ bool SimpleDiveSiteEditDialog::eventFilter(QObject *obj, QEvent *ev) } else if (obj == ui->diveSiteNotes) { diveSiteNotes_editingFinished(); } + return false; } void SimpleDiveSiteEditDialog::showEvent(QShowEvent *ev) |