From 9ec3c7e78e560356066b272ad7a38d3d333de1b5 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 27 May 2018 14:57:51 +0300 Subject: global variable name standardization --- protocols/SkypeWeb/src/skype_trouter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/SkypeWeb') diff --git a/protocols/SkypeWeb/src/skype_trouter.cpp b/protocols/SkypeWeb/src/skype_trouter.cpp index 0b39aeea58..75fb98df62 100644 --- a/protocols/SkypeWeb/src/skype_trouter.cpp +++ b/protocols/SkypeWeb/src/skype_trouter.cpp @@ -201,7 +201,7 @@ void CSkypeProto::OnTrouterEvent(const JSONNode &body, const JSONNode &) CMStringW tooltip(FORMAT, TranslateT("Incoming call from %s"), Clist_GetContactDisplayName(hContact)); cle.szTooltip.w = tooltip.GetBuffer(); - g_CLI.pfnAddEvent(&cle); + g_clistApi.pfnAddEvent(&cle); ShowNotification(Clist_GetContactDisplayName(hContact), TranslateT("Incoming call"), hContact, SKYPE_DB_EVENT_TYPE_INCOMING_CALL); } @@ -224,9 +224,9 @@ INT_PTR CSkypeProto::OnIncomingCallCLE(WPARAM, LPARAM lParam) INT_PTR CSkypeProto::OnIncomingCallPP(WPARAM wParam, LPARAM hContact) { - while (CLISTEVENT *cle = g_CLI.pfnGetEvent(hContact, 0)) { + while (CLISTEVENT *cle = g_clistApi.pfnGetEvent(hContact, 0)) { if (cle->lParam == SKYPE_DB_EVENT_TYPE_INCOMING_CALL) { - g_CLI.pfnRemoveEvent(hContact, cle->hDbEvent); + g_clistApi.pfnRemoveEvent(hContact, cle->hDbEvent); break; } } -- cgit v1.2.3