summaryrefslogtreecommitdiff
path: root/src/wx/recipient_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-05-18 22:21:33 +0200
committerCarl Hetherington <cth@carlh.net>2023-05-18 22:21:33 +0200
commit9f125fddff88bf62d36381f9d3f09e5240b033d5 (patch)
tree586e3040791a634f58e3c0d04e7550490af732f6 /src/wx/recipient_dialog.h
parentc407bf65787162ea712595eecf9fbb409c7f0d1e (diff)
Cleanup: replace some list with vector.
Diffstat (limited to 'src/wx/recipient_dialog.h')
-rw-r--r--src/wx/recipient_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/recipient_dialog.h b/src/wx/recipient_dialog.h
index 2ed6d3f31..a46e67af5 100644
--- a/src/wx/recipient_dialog.h
+++ b/src/wx/recipient_dialog.h
@@ -43,7 +43,7 @@ public:
wxString,
std::string name = "",
std::string notes = "",
- std::list<std::string> emails = std::list<std::string>(),
+ std::vector<std::string> emails = std::vector<std::string>(),
int utc_offset_hour = 0,
int utc_offset_minute = 0,
boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate>()
@@ -52,7 +52,7 @@ public:
std::string name () const;
std::string notes () const;
boost::optional<dcp::Certificate> recipient () const;
- std::list<std::string> emails () const;
+ std::vector<std::string> emails () const;
int utc_offset_hour () const;
int utc_offset_minute () const;