summaryrefslogtreecommitdiff
path: root/src/wx/screen_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-15 19:22:16 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-15 19:22:16 +0000
commitf6caaae7747ed481fbaddcaa6afcfdefbbfc545a (patch)
tree0bf1f25205d6a3ff2e979e626cf8f98dcb03209b /src/wx/screen_dialog.h
parentf87c2a2b16517a015ac2f52f2cdeb99d6da9d5f6 (diff)
Some renaming of certificate -> recipient.
Diffstat (limited to 'src/wx/screen_dialog.h')
-rw-r--r--src/wx/screen_dialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/wx/screen_dialog.h b/src/wx/screen_dialog.h
index 1110bc992..7e03b160d 100644
--- a/src/wx/screen_dialog.h
+++ b/src/wx/screen_dialog.h
@@ -31,18 +31,18 @@ public:
ScreenDialog (wxWindow *, std::string, std::string name = "", boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate> ());
std::string name () const;
- boost::optional<dcp::Certificate> certificate () const;
+ boost::optional<dcp::Certificate> recipient () const;
private:
- void select_certificate ();
- void load_certificate (boost::filesystem::path);
- void download_certificate ();
+ void get_recipient_from_file ();
+ void load_recipient (boost::filesystem::path);
+ void download_recipient ();
void setup_sensitivity ();
wxTextCtrl* _name;
- wxStaticText* _certificate_thumbprint;
- wxButton* _load_certificate;
- wxButton* _download_certificate;
+ wxStaticText* _recipient_thumbprint;
+ wxButton* _get_recipient_from_file;
+ wxButton* _download_recipient;
- boost::optional<dcp::Certificate> _certificate;
+ boost::optional<dcp::Certificate> _recipient;
};