summaryrefslogtreecommitdiff
path: root/src/wx/cinema_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-01 22:30:58 +0100
committerCarl Hetherington <cth@carlh.net>2023-09-14 22:27:41 +0200
commitf19abd2f18c890018269d95c345b507c6cb9d315 (patch)
tree6f886274b2f91a546270c90c6a865de5c0fe0fda /src/wx/cinema_dialog.h
parent6a7b01a6703ce2f19dd3a2bf104e0ccd39150dc9 (diff)
Move UTC offset for KDMs from the cinema to the point of KDM creation (#2300).v2.17.7
Diffstat (limited to 'src/wx/cinema_dialog.h')
-rw-r--r--src/wx/cinema_dialog.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/wx/cinema_dialog.h b/src/wx/cinema_dialog.h
index 0b8362843..cd90f6dea 100644
--- a/src/wx/cinema_dialog.h
+++ b/src/wx/cinema_dialog.h
@@ -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;
};