diff options
author | George Hazan <george.hazan@gmail.com> | 2016-05-23 14:46:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-05-23 14:46:56 +0000 |
commit | 286f6d8ed325ca5f726e6ba5fad86fb834d51c16 (patch) | |
tree | 748642f7c8d719842070cfdcbb124438b86d6eed /plugins/Clist_modern/src/modern_clc.h | |
parent | 439c6760bf51d44e22b7147d54e1f38ce8e1dbab (diff) |
fix for wrongly named variables
git-svn-id: http://svn.miranda-ng.org/main/trunk@16865 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clc.h')
-rw-r--r-- | plugins/Clist_modern/src/modern_clc.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.h b/plugins/Clist_modern/src/modern_clc.h index ab542e615b..5e457b7b94 100644 --- a/plugins/Clist_modern/src/modern_clc.h +++ b/plugins/Clist_modern/src/modern_clc.h @@ -181,11 +181,10 @@ struct tContactItems struct ClcContact : public ClcContactBase
{
ClcContact *subcontacts;
- BYTE SubAllocated;
- BYTE SubExpanded;
- BYTE isSubcontact;
- // int status;
- BOOL image_is_special;
+ int iSubAllocated, nSubContacts;
+
+ bool bSubExpanded, bImageIsSpecial;
+
int avatar_pos;
avatarCacheEntry *avatar_data;
SIZE avatar_size;
|