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.cpp | |
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.cpp')
-rw-r--r-- | qt-ui/printdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/printdialog.cpp b/qt-ui/printdialog.cpp index 683d584ad..48c5a5619 100644 --- a/qt-ui/printdialog.cpp +++ b/qt-ui/printdialog.cpp @@ -1,4 +1,6 @@ #include "printdialog.h" +#include "printoptions.h" +#include "printlayout.h" #include "mainwindow.h" #include <QDebug> |