diff options
| author | 2014-03-07 10:02:37 -0800 | |
|---|---|---|
| committer | 2014-03-07 10:03:03 -0800 | |
| commit | 18303b6f43591c631de01db0067ecdf4cb6dac85 (patch) | |
| tree | cda6a285a48642c7ae3cc95701dcbd81aecd5874 /qt-ui | |
| parent | fcc2af694135ca1959ae1acb0b53c87d21f3623f (diff) | |
| download | subsurface-18303b6f43591c631de01db0067ecdf4cb6dac85.tar.gz | |
Fix compile problem
QPointer was undefined (oddly I didn't run into this when test building
earlier).
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
| -rw-r--r-- | qt-ui/printlayout.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/printlayout.cpp b/qt-ui/printlayout.cpp index 64762cb2c..4723701b7 100644 --- a/qt-ui/printlayout.cpp +++ b/qt-ui/printlayout.cpp @@ -5,6 +5,7 @@ #include <QApplication> #include <QTableView> #include <QHeaderView> +#include <QPointer> #include "mainwindow.h" #include "../dive.h" #include "../display.h" |