diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-01-08 23:14:18 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-08 14:34:39 -0800 |
commit | f16e8414014e581cdf9817cd6122218cc1abc821 (patch) | |
tree | 139658d70c9f65233c9a3ead91d5b53bef719b88 /configuredivecomputer.cpp | |
parent | c8c29ac8cff7c53ecb5d10b5038fafed59d6d93a (diff) | |
download | subsurface-f16e8414014e581cdf9817cd6122218cc1abc821.tar.gz |
Include the right class, not QDebug
QTextStream gets pulled in by QDebug, but this includes the right header
instead.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'configuredivecomputer.cpp')
-rw-r--r-- | configuredivecomputer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configuredivecomputer.cpp b/configuredivecomputer.cpp index 0997a1609..4f7e873fe 100644 --- a/configuredivecomputer.cpp +++ b/configuredivecomputer.cpp @@ -1,6 +1,6 @@ #include "configuredivecomputer.h" #include "libdivecomputer/hw.h" -#include <QDebug> +#include <QTextStream> #include <QFile> #include <libxml/parser.h> #include <libxml/parserInternals.h> |