diff options
Diffstat (limited to 'icons.cpp')
-rw-r--r-- | icons.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -81,8 +81,7 @@ void setClistIcon(HANDLE hContact) {
bool enabled = isContactSecured(hContact);
extern HANDLE g_hCLIcon;
- HANDLE getMetaContact(HANDLE hContact);
- HANDLE hMC = getMetaContact(hContact);
+ HANDLE hMC = metaGetContact(hContact);
if(g_hCLIcon && enabled)
{ // обновить иконки в clist
HICON icon = IconLibGetIcon("secured");
@@ -104,8 +103,7 @@ void setClistIcon(HANDLE hContact) void setSrmmIcon(HANDLE hContact)
{
bool enabled = isContactSecured(hContact);
- HANDLE getMetaContact(HANDLE hContact);
- HANDLE hMC = getMetaContact(hContact);
+ HANDLE hMC = metaGetContact(hContact);
if(ServiceExists(MS_MSG_MODIFYICON))
{ // обновить иконки в srmm
StatusIconData sid = {0};
|