summaryrefslogtreecommitdiff
path: root/src/wx/table_dialog.cc
diff options
context:
space:
mode:
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);