diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-05-14 16:28:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 16:28:02 +0200 |
commit | 42bdfa1d7a2cb7d8e6af58f7b91689c31c64f276 (patch) | |
tree | 5c60030964cf8ca9d279cd66fcdc22bd1ac92b48 /lib/events/callinviteevent.h | |
parent | 3458fdf7b416fe64b82ec9b99553c7b2aa299e4c (diff) | |
parent | 572b727b22d66a79431326c924236ef431fd972b (diff) | |
download | libquotient-42bdfa1d7a2cb7d8e6af58f7b91689c31c64f276.tar.gz libquotient-42bdfa1d7a2cb7d8e6af58f7b91689c31c64f276.zip |
Merge pull request #549 from quotient-im/kitsune/various-fixes
Various fixes and cleanup
Diffstat (limited to 'lib/events/callinviteevent.h')
-rw-r--r-- | lib/events/callinviteevent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/events/callinviteevent.h b/lib/events/callinviteevent.h index 1b1f4f0f..5b4ca0df 100644 --- a/lib/events/callinviteevent.h +++ b/lib/events/callinviteevent.h @@ -13,10 +13,10 @@ public: explicit CallInviteEvent(const QJsonObject& obj); - explicit CallInviteEvent(const QString& callId, const int lifetime, + explicit CallInviteEvent(const QString& callId, int lifetime, const QString& sdp); - QUO_CONTENT_GETTER(int, lifetime) // FIXME: Omittable<>? + QUO_CONTENT_GETTER(int, lifetime) QString sdp() const { return contentPart<QJsonObject>("offer"_ls).value("sdp"_ls).toString(); |