diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2014-10-25 11:52:18 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-27 07:35:53 -0700 |
commit | 8c8943bf004d47ff41166071431f212dc8067e0f (patch) | |
tree | cfb7f886c7c5b3acdbf5f54132e8e56e02a45fcb | |
parent | bf3253f39060c3cba68961f138a9649f6026a8ab (diff) | |
download | subsurface-8c8943bf004d47ff41166071431f212dc8067e0f.tar.gz |
globe.cpp: fix a NO_MARBLE warning
Make eventFilter() return a value for NO_MARBLE.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/globe.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/globe.cpp b/qt-ui/globe.cpp index 18bdc92c3..63e868a06 100644 --- a/qt-ui/globe.cpp +++ b/qt-ui/globe.cpp @@ -366,6 +366,7 @@ void GlobeGPS::centerOnCurrentDive() } bool GlobeGPS::eventFilter(QObject *obj, QEvent *ev) { + return QObject::eventFilter(obj, ev); } void GlobeGPS::prepareForGetDiveCoordinates() { |