summaryrefslogtreecommitdiff
path: root/src/lib/dkdm_recipient.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-10 22:40:16 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-10 22:40:16 +0100
commiteade5cc8657f51d1d768b705936e918f8d1f53ee (patch)
treef7aa1c8c21a483b69f3e4c7908c6310fb7af932e /src/lib/dkdm_recipient.h
parent0e18e7acd23ef466cc14a8b2d9a19df4dd991ddc (diff)
Also remove now-redundant UTC offset from DKDMRecipient.
Diffstat (limited to 'src/lib/dkdm_recipient.h')
-rw-r--r--src/lib/dkdm_recipient.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/dkdm_recipient.h b/src/lib/dkdm_recipient.h
index 4015a0b7d..3317ae6f9 100644
--- a/src/lib/dkdm_recipient.h
+++ b/src/lib/dkdm_recipient.h
@@ -33,14 +33,10 @@ public:
std::string const& name_,
std::string const& notes_,
boost::optional<dcp::Certificate> recipient_,
- std::vector<std::string> emails_,
- int utc_offset_hour_,
- int utc_offset_minute_
+ std::vector<std::string> emails_
)
: KDMRecipient (name_, notes_, recipient_, boost::none)
, emails (emails_)
- , utc_offset_hour (utc_offset_hour_)
- , utc_offset_minute (utc_offset_minute_)
{
}
@@ -50,8 +46,6 @@ public:
void as_xml (xmlpp::Element *) const override;
std::vector<std::string> emails;
- int utc_offset_hour;
- int utc_offset_minute;
};