diff options
-rw-r--r-- | display.h | 1 | ||||
-rw-r--r-- | qt-ui/printdialog.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -44,7 +44,6 @@ struct options { int print_selected; int color_selected; bool notes_up; - int profile_height, notes_height, tanks_height; }; extern unsigned int dc_number; diff --git a/qt-ui/printdialog.cpp b/qt-ui/printdialog.cpp index 8f1a5ca68..1112bcff7 100644 --- a/qt-ui/printdialog.cpp +++ b/qt-ui/printdialog.cpp @@ -15,7 +15,7 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f) { // options template (are we storing these in the settings?) - struct options tempOptions = { options::PRETTY, 0, 2, false, 65, 15, 12 }; + struct options tempOptions = { options::PRETTY, 0, 2, false }; printOptions = tempOptions; // create a print layout and pass the printer and options |