summaryrefslogtreecommitdiff
path: root/src/wx/screen_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-01-04 11:11:14 +0100
committerCarl Hetherington <cth@carlh.net>2026-01-04 11:11:14 +0100
commitddfeed4cbb8b9dfe3a6e77ef7e9e99532dfa3056 (patch)
tree59b20e45e390cb48faae71935f0bcd2c6896843f /src/wx/screen_dialog.h
parent1bff57b9dc7af17be1e570e45bbbe3347835e749 (diff)
White space: screen_dialog.{cc,h}
Diffstat (limited to 'src/wx/screen_dialog.h')
-rw-r--r--src/wx/screen_dialog.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/wx/screen_dialog.h b/src/wx/screen_dialog.h
index f8bc2ddaf..5f60a0414 100644
--- a/src/wx/screen_dialog.h
+++ b/src/wx/screen_dialog.h
@@ -36,7 +36,7 @@ class TrustedDeviceDialog;
class ScreenDialog : public wxDialog
{
public:
- ScreenDialog (
+ ScreenDialog(
wxWindow *,
wxString,
std::string name = "",
@@ -46,23 +46,23 @@ public:
std::vector<TrustedDevice> d = {}
);
- std::string name () const;
- std::string notes () const;
- boost::optional<dcp::Certificate> recipient () const;
- boost::optional<std::string> recipient_file () const;
- std::vector<TrustedDevice> trusted_devices () {
+ std::string name() const;
+ std::string notes() const;
+ boost::optional<dcp::Certificate> recipient() const;
+ boost::optional<std::string> recipient_file() const;
+ std::vector<TrustedDevice> trusted_devices() {
return _trusted_devices;
}
private:
- void get_recipient_from_file ();
- void load_recipient (boost::filesystem::path);
- void download_recipient ();
- void setup_sensitivity ();
- void set_recipient (boost::optional<dcp::Certificate>);
+ void get_recipient_from_file();
+ void load_recipient(boost::filesystem::path);
+ void download_recipient();
+ void setup_sensitivity();
+ void set_recipient(boost::optional<dcp::Certificate>);
void set_recipient_file(std::string file);
- void set_trusted_devices (std::vector<TrustedDevice> d) {
+ void set_trusted_devices(std::vector<TrustedDevice> d) {
_trusted_devices = d;
}