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 --- plugins/NewEventNotify/src/popup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/NewEventNotify/src') diff --git a/plugins/NewEventNotify/src/popup.cpp b/plugins/NewEventNotify/src/popup.cpp index 9ce4dd2a41..e3126f4bb3 100644 --- a/plugins/NewEventNotify/src/popup.cpp +++ b/plugins/NewEventNotify/src/popup.cpp @@ -85,7 +85,7 @@ int PopupAct(HWND hWnd, UINT mask, PLUGIN_DATA* pdata) return 0; for (int idx = 0;; idx++) { - CLISTEVENT *cle = g_CLI.pfnGetEvent(pdata->hContact, idx); + CLISTEVENT *cle = g_clistApi.pfnGetEvent(pdata->hContact, idx); if (cle == nullptr) break; @@ -104,7 +104,7 @@ int PopupAct(HWND hWnd, UINT mask, PLUGIN_DATA* pdata) EVENT_DATA_EX *eventData = pdata->firstEventData; pdata->iLock = 1; while (eventData) { - g_CLI.pfnRemoveEvent(pdata->hContact, eventData->hEvent); + g_clistApi.pfnRemoveEvent(pdata->hContact, eventData->hEvent); db_event_markRead(pdata->hContact, eventData->hEvent); eventData = eventData->next; } -- cgit v1.2.3