summaryrefslogtreecommitdiff
path: root/src/wx/table_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-07 17:11:31 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:58 +0100
commitf29f405000752ad568de1e304640a4edac8214bc (patch)
treecb4990c7e7d90ddc6d5fddb9a69f3379a693c3fa /src/wx/table_dialog.cc
parentbf0b74f67b87b2361529cefaae45533e5935a9c4 (diff)
Basics of job view when sending KDM emails from dcpomatic_kdm.
Diffstat (limited to 'src/wx/table_dialog.cc')
-rw-r--r--src/wx/table_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/table_dialog.cc b/src/wx/table_dialog.cc
index b3937fd18..3c5d9d3d5 100644
--- a/src/wx/table_dialog.cc
+++ b/src/wx/table_dialog.cc
@@ -20,14 +20,14 @@
#include "table_dialog.h"
#include "wx_util.h"
-TableDialog::TableDialog (wxWindow* parent, wxString title, int columns, bool cancel)
+TableDialog::TableDialog (wxWindow* parent, wxString title, int columns, int growable, bool cancel)
: wxDialog (parent, wxID_ANY, title)
{
_overall_sizer = new wxBoxSizer (wxVERTICAL);
SetSizer (_overall_sizer);
_table = new wxFlexGridSizer (columns, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
- _table->AddGrowableCol (1, 1);
+ _table->AddGrowableCol (growable, 1);
_overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);