diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-12-04 15:44:31 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-12-04 15:47:33 +0200 |
commit | e4f35fb51a549ed666728eaa947728686a415ac9 (patch) | |
tree | a1bd67794f0558222d5e93974551978cc6e538d9 /qt-ui/printdialog.h | |
parent | 95e00b0acd28117bbc3aded76f8079c08449bc17 (diff) | |
download | subsurface-e4f35fb51a549ed666728eaa947728686a415ac9.tar.gz |
Print: fix some forward declarations
In the PrintLayout constructor we receive a pointer
of PrintDialog, but the type is incomplete, as we only
forward declare it in the class header. If we decide
to eventually call a method from PrintDialog we also
need to include printdialog.h in printlayout.cpp.
The patch also fixes a similar issue in printdialog.h.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'qt-ui/printdialog.h')
-rw-r--r-- | qt-ui/printdialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qt-ui/printdialog.h b/qt-ui/printdialog.h index 924f21acc..e75502997 100644 --- a/qt-ui/printdialog.h +++ b/qt-ui/printdialog.h @@ -4,8 +4,9 @@ #include <QDialog> #include <QPrinter> #include "../display.h" -#include "printoptions.h" -#include "printlayout.h" + +class PrintOptions; +class PrintLayout; // should be based on a custom QPrintDialog class class PrintDialog : public QDialog { |