| 40 | const QList<ChatWidgetHolder*> &chatWidgetHolderList = cw->chatWidgetHolderList(); |
| 41 | |
| 42 | foreach (ChatWidgetHolder *chatWidgetHolder, chatWidgetHolderList) |
| 43 | { |
| 44 | VOIPChatWidgetHolder *acwh = dynamic_cast<VOIPChatWidgetHolder*>(chatWidgetHolder) ; |
| 45 | |
| 46 | if (acwh) |
| 47 | acwh->ReceivedInvitation(peer_id, flags); |
| 48 | } |
| 49 | } |
| 50 | } else { |
| 51 | std::cerr << "VOIPGUIHandler::ReceivedInvitation() Error: received invitaion call for a chat dialog that does not stand VOIP (Peer id = " << peer_id.toStdString() << "!" << std::endl; |
nothing calls this directly
no test coverage detected