Cleanup: replace some list with vector.
[dcpomatic.git] / src / lib / dkdm_recipient.h
index 6e9e4dfb1721bdbb0fdc19dd2954e1f57b53eb25..7a0fa01854c271347fbc96f151367e8b453cb21b 100644 (file)
@@ -33,7 +33,7 @@ public:
                std::string const& name_,
                std::string const& notes_,
                boost::optional<dcp::Certificate> recipient_,
-               std::list<std::string> emails_,
+               std::vector<std::string> emails_,
                int utc_offset_hour_,
                int utc_offset_minute_
                )
@@ -49,7 +49,7 @@ public:
 
        void as_xml (xmlpp::Element *) const override;
 
-       std::list<std::string> emails;
+       std::vector<std::string> emails;
        int utc_offset_hour;
        int utc_offset_minute;
 };