diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2020-04-09 16:39:32 +0200 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2020-04-09 18:26:04 +0200 |
commit | e57b4f75b55c2befad4f9944f43c8aa2310321b7 (patch) | |
tree | 4fe80cd71e3ecbc5344bf15e06336073cc99fb33 /responsemessage.h | |
parent | 0ed292d3ccf93c889734960676a321d1166d3f66 (diff) |
add missing overrides in ResponseMessage
The original message hierarchy rework patch
is missing functionality which results in received
replies being discarded.
Basically, ResponseMessage class is
missing the override required to match replies to
the original calls.
Bug-AGL: SPEC-3112
Fixes: 0ed292d3ccf9 (rework Message hierarchy)
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: I39030ef212b2175a590deca02f9f9ff41bf7abf4
Diffstat (limited to 'responsemessage.h')
-rw-r--r-- | responsemessage.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/responsemessage.h b/responsemessage.h index edad3b1..bac4296 100644 --- a/responsemessage.h +++ b/responsemessage.h @@ -60,6 +60,11 @@ class ResponseMessage : public Message return m_reply_data; } + bool getCallId(unsigned int *id) const override + { + *id = m_reply_callid; + return true; + } bool isEvent() override { return false; @@ -70,7 +75,7 @@ class ResponseMessage : public Message return true; } - bool setAdditionalData(QByteArray data); + bool setAdditionalData(QByteArray data) override; bool copyCallId(unsigned int *id); QByteArray serialize(QJsonDocument::JsonFormat format = QJsonDocument::Compact) override; |