diff options
Diffstat (limited to 'plugins/Clist_mw/contact.cpp')
-rw-r--r-- | plugins/Clist_mw/contact.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_mw/contact.cpp b/plugins/Clist_mw/contact.cpp index 54474e3b85..d8cf0f37d4 100644 --- a/plugins/Clist_mw/contact.cpp +++ b/plugins/Clist_mw/contact.cpp @@ -99,7 +99,7 @@ void LoadContactTree(void) break;
}
status = cacheEntry->status;
- if ((!hideOffline || status != ID_STATUS_OFFLINE) && !cacheEntry->Hidden)
+ if ((!hideOffline || status != ID_STATUS_OFFLINE) && !cacheEntry->bIsHidden)
ChangeContactIcon(hContact,ExtIconFromStatusMode(hContact,(char*)cacheEntry->szProto,status),1);
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT,(WPARAM)hContact,0);
}
|