Move UTC offset for KDMs from the cinema to the point of KDM creation (#2300).
[dcpomatic.git] / src / wx / cinema_dialog.h
index 0b8362843de68f759c08a08c1b0aae8367b0d093..cd90f6dea9ee1e9bf2569f89af8e8b4eeadc557a 100644 (file)
@@ -38,16 +38,12 @@ public:
                wxString,
                std::string name = "",
                std::vector<std::string> emails = std::vector<std::string>(),
-               std::string notes = "",
-               int utc_offset_hour = 0,
-               int utc_offset_minute = 0
+               std::string notes = ""
                );
 
        std::string name () const;
        std::string notes () const;
        std::vector<std::string> emails () const;
-       int utc_offset_hour () const;
-       int utc_offset_minute () const;
 
 private:
        void set_emails (std::vector<std::string>);
@@ -56,6 +52,4 @@ private:
        wxTextCtrl* _notes;
        EditableList<std::string, EmailDialog>* _email_list;
        std::vector<std::string> _emails;
-       wxChoice* _utc_offset;
-       std::vector<Offset> _offsets;
 };