diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-05-01 13:46:54 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-01 09:42:31 -0700 |
commit | 46cdf24e1111a0f1e3c393c8b5fe0707df38765b (patch) | |
tree | 7fb0577d87ba8e42ad2612e9b941aea8826a3fd6 /core/parse-gpx.cpp | |
parent | 95284c026e763482ef581c8b6298012d2c1fd941 (diff) | |
download | subsurface-46cdf24e1111a0f1e3c393c8b5fe0707df38765b.tar.gz |
cleanup: only include QString in desktop-widgets/importgps.h
This included QFile, which is fatter and not needed here. Include
QFile only in the actual translation unit.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/parse-gpx.cpp')
-rw-r--r-- | core/parse-gpx.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/parse-gpx.cpp b/core/parse-gpx.cpp index d00e59d4d..9649780c7 100644 --- a/core/parse-gpx.cpp +++ b/core/parse-gpx.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #include "core/parse-gpx.h" #include "core/dive.h" +#include <QFile> #include <QXmlStreamReader> // Find the coordinates at the time specified in coords.start_dive |