Update for TableDialog constructor change.
[dcpomatic.git] / src / wx / download_certificate_dialog.cc
index 90d383298e6a77ff696e00d890e2269556f8ec46..275c943db7687895430f02897026e8aa15aef4ce 100644 (file)
@@ -24,7 +24,7 @@
 using boost::function;
 
 DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent, function<void (boost::filesystem::path)> load)
-       : TableDialog (parent, _("Download certificate"), 2, true)
+       : TableDialog (parent, _("Download certificate"), 2, 1, true)
        , _load (load)
        , _message (0)
        , _download (0)
@@ -61,5 +61,3 @@ DownloadCertificateDialog::downloaded (bool done)
        wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
        ok->Enable (done);
 }
-
-