diff options
author | George Hazan <george.hazan@gmail.com> | 2023-05-21 13:56:23 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-05-21 13:56:23 +0300 |
commit | ec8a7614a371f41937dc1dbc2d53289e45706e3a (patch) | |
tree | e5937361b3a7ce11eb9b1dbba9debc2d5c1b7339 /plugins/NewEventNotify | |
parent | d93053e9cca314179eea3fff202a32f8ec74b770 (diff) |
static function pfnGetEvent removed from CLIST_INTERFACE
Diffstat (limited to 'plugins/NewEventNotify')
-rw-r--r-- | plugins/NewEventNotify/src/popup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewEventNotify/src/popup.cpp b/plugins/NewEventNotify/src/popup.cpp index cfb40947b7..c0218bf43d 100644 --- a/plugins/NewEventNotify/src/popup.cpp +++ b/plugins/NewEventNotify/src/popup.cpp @@ -63,7 +63,7 @@ int PopupAct(HWND hWnd, UINT mask, PLUGIN_DATA *pdata) MEVENT hEvent = pdata->events[0];
for (int idx = 0;; idx++) {
- CLISTEVENT *cle = g_clistApi.pfnGetEvent(pdata->hContact, idx);
+ auto *cle = Clist_GetEvent(pdata->hContact, idx);
if (cle == nullptr) {
CallFunctionSync(DoDefaultHandling, pdata);
break;
|