Basics of job view when sending KDM emails from dcpomatic_kdm.
[dcpomatic.git] / src / wx / table_dialog.h
index f04c2027ca4d8feba8b5397fc8330b9c16390edf..55572103118a6c826ba84daec39ebdbd9f950b3c 100644 (file)
@@ -25,7 +25,7 @@
 class TableDialog : public wxDialog
 {
 public:
-       TableDialog (wxWindow* parent, wxString title, int columns, bool cancel);
+       TableDialog (wxWindow* parent, wxString title, int columns, int growable, bool cancel);
 
 protected:
        template<class T>
@@ -39,9 +39,10 @@ protected:
 
        void layout ();
 
+       wxFlexGridSizer* _table;
+
 private:
        wxSizer* _overall_sizer;
-       wxFlexGridSizer* _table;
 };
 
 #endif