diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-30 20:46:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-30 20:46:01 +0000 |
commit | 06a79b9469f4d187132cd148411d9b92c7e35e6f (patch) | |
tree | bb9ee9b9daf2016ecc97d9af8b575cd32b8574da /plugins/Clist_mw/src/clist.h | |
parent | 0edc13560169b35dc38e2923f0d240531221cd03 (diff) |
fix for that hell with ClcCacheEntryBase
git-svn-id: http://svn.miranda-ng.org/main/trunk@2120 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw/src/clist.h')
-rw-r--r-- | plugins/Clist_mw/src/clist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_mw/src/clist.h b/plugins/Clist_mw/src/clist.h index 20c8a7ce80..56efca3218 100644 --- a/plugins/Clist_mw/src/clist.h +++ b/plugins/Clist_mw/src/clist.h @@ -31,7 +31,7 @@ void SortContacts(void); void ChangeContactIcon(HANDLE hContact,int iIcon,int add);
int GetContactInfosForSort(HANDLE hContact,char **Proto,TCHAR **Name,int *Status);
-struct displayNameCacheEntry : public ClcCacheEntryBase
+struct ClcCacheEntry : public ClcCacheEntryBase
{
int noHiddenOffline;
@@ -48,8 +48,8 @@ struct displayNameCacheEntry : public ClcCacheEntryBase boolean isUnknown;
};
-typedef displayNameCacheEntry *pdisplayNameCacheEntry;
+typedef ClcCacheEntry *pClcCacheEntry;
-pdisplayNameCacheEntry GetContactFullCacheEntry(HANDLE hContact);
+pClcCacheEntry GetContactFullCacheEntry(HANDLE hContact);
#endif
\ No newline at end of file |