aboutsummaryrefslogtreecommitdiff
path: root/lib/events/callanswerevent.h
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-05-10 22:56:02 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-05-11 16:18:00 +0200
commitb32c1c27ae412d073a7e98bdaf22678bdc66ab23 (patch)
tree79239255ac65c5c17610813496327b968fa25ca5 /lib/events/callanswerevent.h
parent98fdf62391fdc5135d8324476903a4c43345e732 (diff)
downloadlibquotient-b32c1c27ae412d073a7e98bdaf22678bdc66ab23.tar.gz
libquotient-b32c1c27ae412d073a7e98bdaf22678bdc66ab23.zip
CallAnswerEvent: drop lifetime
See https://github.com/matrix-org/matrix-spec/pull/1054. # Conflicts: # lib/events/callanswerevent.cpp # lib/events/callanswerevent.h
Diffstat (limited to 'lib/events/callanswerevent.h')
-rw-r--r--lib/events/callanswerevent.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/events/callanswerevent.h b/lib/events/callanswerevent.h
index 70292a7a..4d539b85 100644
--- a/lib/events/callanswerevent.h
+++ b/lib/events/callanswerevent.h
@@ -13,12 +13,8 @@ public:
explicit CallAnswerEvent(const QJsonObject& obj);
- explicit CallAnswerEvent(const QString& callId, const int lifetime,
- const QString& sdp);
explicit CallAnswerEvent(const QString& callId, const QString& sdp);
- QUO_CONTENT_GETTER(int, lifetime) // FIXME: Omittable<>?
-
QString sdp() const
{
return contentPart<QJsonObject>("answer"_ls).value("sdp"_ls).toString();