diff options
author | George Hazan <george.hazan@gmail.com> | 2016-03-24 09:11:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-03-24 09:11:43 +0000 |
commit | 5f3997157e81d4910bcc4659bee7124a9c744d2f (patch) | |
tree | a6ff27d2d8a193b7d8139d114b85eb660cedb843 /plugins/Clist_modern/src/modern_clc.cpp | |
parent | 930b7f8aa2175f1b114e76b5687c6a4b7d6fee37 (diff) |
- db_get_ts -> db_get_tsa;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@16533 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clc.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.cpp b/plugins/Clist_modern/src/modern_clc.cpp index 821d183cff..8f62018a4f 100644 --- a/plugins/Clist_modern/src/modern_clc.cpp +++ b/plugins/Clist_modern/src/modern_clc.cpp @@ -1572,7 +1572,7 @@ static LRESULT clcOnIntmStatusChanged(ClcData *dat, HWND hwnd, UINT msg, WPARAM ClcContact *contact; if (FindItem(hwnd, dat, wParam, &contact, NULL, NULL, TRUE)) { if (contact && contact->type == CLCIT_CONTACT) { - if (!contact->image_is_special && pdnce___GetStatus(pdnce) > ID_STATUS_OFFLINE) + if (!contact->image_is_special && pdnce->getStatus() > ID_STATUS_OFFLINE) contact->iImage = corecli.pfnGetContactIcon(wParam); if (contact->isSubcontact && contact->subcontacts && contact->subcontacts->type == CLCIT_CONTACT) pcli->pfnClcBroadcast(INTM_STATUSCHANGED, contact->subcontacts->hContact, 0); //forward status changing to host meta contact |