diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-18 22:21:33 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-05-18 22:21:33 +0200 |
| commit | 9f125fddff88bf62d36381f9d3f09e5240b033d5 (patch) | |
| tree | 586e3040791a634f58e3c0d04e7550490af732f6 /src/wx/recipient_dialog.h | |
| parent | c407bf65787162ea712595eecf9fbb409c7f0d1e (diff) | |
Cleanup: replace some list with vector.
Diffstat (limited to 'src/wx/recipient_dialog.h')
| -rw-r--r-- | src/wx/recipient_dialog.h | 4 |
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; |
