Browse Source

Restore CallId param in onAvStarting

We actually use it now.
pull/1768/head
tux3 10 years ago
parent
commit
0f7015941c
  1. 2
      src/widget/form/chatform.cpp

2
src/widget/form/chatform.cpp

@ -401,7 +401,7 @@ void ChatForm::onAvRinging(uint32_t FriendId, int CallId, bool video) @@ -401,7 +401,7 @@ void ChatForm::onAvRinging(uint32_t FriendId, int CallId, bool video)
addSystemInfoMessage(tr("Calling to %1").arg(f->getDisplayedName()), ChatMessage::INFO, QDateTime::currentDateTime());
}
void ChatForm::onAvStarting(uint32_t FriendId, int, bool video)
void ChatForm::onAvStarting(uint32_t FriendId, int CallId, bool video)
{
if (FriendId != f->getFriendID())
return;

Loading…
Cancel
Save