Try to fix build.
[dcpomatic.git] / src / wx / download_certificate_dialog.h
index 11f1afe424a55591f67699b7b1e3226f1b870632..804c0c762556f7af2b0d600a35e3a043b80858dc 100644 (file)
 #include <wx/wx.h>
 #include <boost/function.hpp>
 #include <boost/filesystem.hpp>
+#include "table_dialog.h"
 
-class DownloadCertificateDialog : public wxDialog
+class DownloadCertificateDialog : public TableDialog
 {
 public:
        DownloadCertificateDialog (wxWindow *, boost::function<void (boost::filesystem::path)>);
-       virtual void setup () {}
 
 protected:
        void add_common_widgets ();
        
        boost::function<void (boost::filesystem::path)> _load;
-       wxSizer* _overall_sizer;
-       wxGauge* _gauge;
        wxStaticText* _message;
        wxButton* _download;