Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / wx / table_dialog.h
index 23017c3b635c2d4652e229e0aa67cbbd3d262493..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>
@@ -36,12 +36,13 @@ protected:
 
        void add (wxString text, bool label);
        void add_spacer ();
-       
+
        void layout ();
 
-private:       
-       wxSizer* _overall_sizer;
        wxFlexGridSizer* _table;
+
+private:
+       wxSizer* _overall_sizer;
 };
 
 #endif