summaryrefslogtreecommitdiff
path: root/src/wx/download_certificate_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-15 10:51:16 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-15 10:57:07 +0100
commit998b2eea5640cda23950ff6c5e24bd1f9ccb160f (patch)
treed3a3cea840335da15efb409cd2d8842f00973c2e /src/wx/download_certificate_dialog.cc
parentc3fc23c2670ae6377ef42a4e4af051d47b88e75d (diff)
Add GDC and accounts icon.
Diffstat (limited to 'src/wx/download_certificate_dialog.cc')
-rw-r--r--src/wx/download_certificate_dialog.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/download_certificate_dialog.cc b/src/wx/download_certificate_dialog.cc
index dfafee36c..a12097001 100644
--- a/src/wx/download_certificate_dialog.cc
+++ b/src/wx/download_certificate_dialog.cc
@@ -21,6 +21,7 @@
#include "dolby_doremi_certificate_panel.h"
#include "barco_alchemy_certificate_panel.h"
#include "christie_certificate_panel.h"
+#include "gdc_certificate_panel.h"
#include "download_certificate_dialog.h"
#include "wx_util.h"
@@ -47,6 +48,7 @@ DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent)
_pages.push_back (new DolbyDoremiCertificatePanel (this));
_pages.push_back (new BarcoAlchemyCertificatePanel (this));
_pages.push_back (new ChristieCertificatePanel (this));
+ _pages.push_back (new GDCCertificatePanel (this));
BOOST_FOREACH (DownloadCertificatePanel* i, _pages) {
_notebook->AddPage (i, i->name(), true);