summaryrefslogtreecommitdiff
path: root/src/wx/screen_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-15 20:23:25 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-15 20:23:25 +0000
commite170d9908c191180aefe71ff7cfa81a5ba08ed83 (patch)
treebfa566bcf3242500e030cc1bbed64a313846ffa8 /src/wx/screen_dialog.cc
parent3a67f024a614687a811ecb5c96a56fc664f04c3a (diff)
Save trusted devices.
Diffstat (limited to 'src/wx/screen_dialog.cc')
-rw-r--r--src/wx/screen_dialog.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc
index a8cb1cbed..bec531879 100644
--- a/src/wx/screen_dialog.cc
+++ b/src/wx/screen_dialog.cc
@@ -71,9 +71,10 @@ column (dcp::Certificate c)
return c.thumbprint ();
}
-ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient)
+ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient, vector<dcp::Certificate> trusted_devices)
: wxDialog (parent, wxID_ANY, std_to_wx (title))
, _recipient (recipient)
+ , _trusted_devices (trusted_devices)
{
wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
SetSizer (overall_sizer);