summaryrefslogtreecommitdiff
path: root/src/wx/download_certificate_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/download_certificate_dialog.h')
-rw-r--r--src/wx/download_certificate_dialog.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/wx/download_certificate_dialog.h b/src/wx/download_certificate_dialog.h
index dcb0a952a..180c13278 100644
--- a/src/wx/download_certificate_dialog.h
+++ b/src/wx/download_certificate_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -33,13 +33,20 @@ public:
void setup_sensitivity ();
+ wxNotebook* notebook () const {
+ return _notebook;
+ }
+
+ wxStaticText* message () const {
+ return _message;
+ }
+
private:
void download ();
void page_changed (wxNotebookEvent &);
wxNotebook* _notebook;
std::vector<DownloadCertificatePanel*> _pages;
- std::vector<bool> _setup;
wxButton* _download;
wxStaticText* _message;
};