diff options
Diffstat (limited to 'protocols/IRCG/src')
-rw-r--r-- | protocols/IRCG/src/clist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/IRCG/src/clist.cpp b/protocols/IRCG/src/clist.cpp index ff43d197c8..4c6b695325 100644 --- a/protocols/IRCG/src/clist.cpp +++ b/protocols/IRCG/src/clist.cpp @@ -73,9 +73,9 @@ BOOL CIrcProto::CList_AddDCCChat(const CMStringW& name, const CMStringW& hostmas cle.szTooltip.w = szNick;
cle.lParam = (LPARAM)pdci;
- if (g_CLI.pfnGetEvent(hContact, 0))
- g_CLI.pfnRemoveEvent(hContact, -100);
- g_CLI.pfnAddEvent(&cle);
+ if (g_clistApi.pfnGetEvent(hContact, 0))
+ g_clistApi.pfnRemoveEvent(hContact, -100);
+ g_clistApi.pfnAddEvent(&cle);
}
return TRUE;
}
|