Add missing return statement

We act on the event but don't consume it.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-06-27 16:05:24 -07:00
parent 9f86468c00
commit ee8f7de4e7

View file

@ -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)