diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-06-20 10:55:01 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-06-20 10:55:23 -0700 |
commit | 4fda04af2f9b5328adb9eb76bc4cce598a12ff56 (patch) | |
tree | 8bab90bf577de279e0201822953a0b799f99d4b4 /pbap/pbap.cpp | |
parent | 46a79c44b7ac8da7208658fc26d3eec152f7b616 (diff) |
libqtappfw: pbap: fix compile error in if statement
Bug-AGL: SPEC-2541
Change-Id: I71961e011b4d4bbce2720896dbc0e2e43774cd14
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'pbap/pbap.cpp')
-rw-r--r-- | pbap/pbap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbap/pbap.cpp b/pbap/pbap.cpp index 53b646b..d525013 100644 --- a/pbap/pbap.cpp +++ b/pbap/pbap.cpp @@ -292,7 +292,7 @@ void Pbap::onMessageReceived(MessageType type, Message *msg) } else if (msg->isReply() && type == ResponseRequestMessage) { ResponseMessage *tmsg = qobject_cast<ResponseMessage*>(msg); - if (tmsg->requestVerb() == "contacts") || tmsg->requestVerb() == "import") { + if (tmsg->requestVerb() == "contacts" || tmsg->requestVerb() == "import") { updateContacts(tmsg->replyData().value("vcards").toArray()); } else if (tmsg->requestVerb() == "history") { updateCalls(tmsg->replyData().value("vcards").toArray()); |