diff options
author | Alex Blasche <alexander.blasche@qt.io> | 2017-07-04 15:48:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-06 12:43:42 +0900 |
commit | bf3cc2f64b58c630ff9b1c234bded9ea43ee02e0 (patch) | |
tree | fd110143ed3ca29d036737d64ede4bba4fcf80e3 /core | |
parent | 868fb9d5a929f05dc91f9d3f908ddf7c0fd23114 (diff) | |
download | subsurface-bf3cc2f64b58c630ff9b1c234bded9ea43ee02e0.tar.gz |
Make compile with Qt developer builds
subsurface/core/divesitehelpers.cpp: In member function 'virtual void ReverseGeoLookupThread::run()':
subsurface/core/divesitehelpers.cpp:128:12: error: invalid use of incomplete type 'class QDebug'
qDebug() << "no reverse geo lookup; geonames returned\n" << fullReply;
^
Signed-off-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'core')
-rw-r--r-- | core/divesitehelpers.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/divesitehelpers.cpp b/core/divesitehelpers.cpp index a680eef34..57a58b233 100644 --- a/core/divesitehelpers.cpp +++ b/core/divesitehelpers.cpp @@ -8,6 +8,7 @@ #include "divesite.h" #include "helpers.h" #include "membuffer.h" +#include <QDebug> #include <QJsonDocument> #include <QJsonArray> #include <QJsonObject> |