summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-27 16:05:24 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-27 16:05:24 -0700
commitee8f7de4e7fb8183c9a34dcab8ab88b96255af8d (patch)
tree34a8c1fd9de0bed06ca39513b3de0c623b9d7d5b
parent9f86468c00bb1e1c9c904a1142d7406dc86af28d (diff)
downloadsubsurface-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.cpp1
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)