diff options
Diffstat (limited to 'src/wx/table_dialog.h')
| -rw-r--r-- | src/wx/table_dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/table_dialog.h b/src/wx/table_dialog.h index 555721031..9e1d09d57 100644 --- a/src/wx/table_dialog.h +++ b/src/wx/table_dialog.h @@ -29,8 +29,8 @@ public: protected: template<class T> - T* add (T* w) { - _table->Add (w, 1, wxEXPAND); + T* add (T* w, int proportion = 1, int flag = wxEXPAND) { + _table->Add (w, proportion, flag); return w; } |
