diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-03-13 17:00:19 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-04-04 16:07:13 -0700 |
commit | 1cd754f9761df857b6ff6d87a2030ec81928987f (patch) | |
tree | cba3f2d8bdad6d0dc04b5a3def964247ae041ef1 /telephony/telephony.cpp | |
parent | fd1810addb8bfc69c4ca3dc218f3d14e5ad3343e (diff) |
libqtappfw: telephony: add onlineChanged signalguppy_7.0.1guppy/7.0.17.0.1
Allow clients to receive Handsfree profile status to enable/disable
dialpads and other functions.
Bug-AGL: SPEC-2257
Change-Id: I3a614dbbdc9a75ffea103bb6b5182f48dae608b6
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'telephony/telephony.cpp')
-rw-r--r-- | telephony/telephony.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/telephony/telephony.cpp b/telephony/telephony.cpp index 08b80b1..716ded7 100644 --- a/telephony/telephony.cpp +++ b/telephony/telephony.cpp @@ -66,7 +66,8 @@ void Telephony::onConnected() "callStateChanged", "dialingCall", "incomingCall", - "terminatedCall"}; + "terminatedCall", + "online"}; QStringListIterator eventIterator(events); TelephonyMessage *tmsg; @@ -103,6 +104,8 @@ void Telephony::onMessageReceived(MessageType type, Message *message) setCallState("disconnected"); m_colp = ""; m_clip = ""; + } else if (tmsg->isOnline()) { + setOnlineState(tmsg->connected()); } } } |