Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / wx / download_certificate_dialog.h
index 11f1afe424a55591f67699b7b1e3226f1b870632..9fac23d58436e3aa0b6dd39bb09ced74bd41c41b 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;