diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-12-13 13:32:40 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-17 13:03:56 -0800 |
commit | fa6eb6144bc756380c4148d05a67a99b0ac25ef3 (patch) | |
tree | 2b8090561e1ad3e7c982cd6af56d2b08dbf4b8cf /desktop-widgets/templatelayout.cpp | |
parent | 2239ffe13c1babcae7a0822c83ab8d0f23317358 (diff) | |
download | subsurface-fa6eb6144bc756380c4148d05a67a99b0ac25ef3.tar.gz |
printing: move #includes from headers to source files
To decrease include-file interdependencies.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/templatelayout.cpp')
-rw-r--r-- | desktop-widgets/templatelayout.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/desktop-widgets/templatelayout.cpp b/desktop-widgets/templatelayout.cpp index 7d29b20dd..b7da29294 100644 --- a/desktop-widgets/templatelayout.cpp +++ b/desktop-widgets/templatelayout.cpp @@ -1,11 +1,16 @@ // SPDX-License-Identifier: GPL-2.0 #include <QFileDevice> #include <QRegularExpression> -#include <list> +#include <QTextStream> #include "templatelayout.h" +#include "mainwindow.h" +#include "printoptions.h" #include "core/divelist.h" #include "core/selection.h" +#include "core/qthelper.h" +#include "core/subsurface-qt/diveobjecthelper.h" +#include "core/subsurface-qt/cylinderobjecthelper.h" // TODO: remove once grantlee supports Q_GADGET objects QList<QString> grantlee_templates, grantlee_statistics_templates; |