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 /src/core/stdfile | |
parent | d93053e9cca314179eea3fff202a32f8ec74b770 (diff) |
static function pfnGetEvent removed from CLIST_INTERFACE
Diffstat (limited to 'src/core/stdfile')
-rw-r--r-- | src/core/stdfile/src/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdfile/src/file.cpp b/src/core/stdfile/src/file.cpp index 652da6a36c..20e9ba44a9 100644 --- a/src/core/stdfile/src/file.cpp +++ b/src/core/stdfile/src/file.cpp @@ -266,7 +266,7 @@ static int SRFileProtoAck(WPARAM, LPARAM lParam) ACKDATA *ack = (ACKDATA*)lParam;
if (ack->type == ACKTYPE_FILE) {
int iEvent = 0;
- while (CLISTEVENT *cle = g_clistApi.pfnGetEvent(ack->hContact, iEvent++))
+ while (auto *cle = Clist_GetEvent(ack->hContact, iEvent++))
if (cle->lParam == (LPARAM)ack->hProcess)
g_clistApi.pfnRemoveEvent(ack->hContact, cle->hDbEvent);
}
|