diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-22 11:28:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-22 11:28:05 +0000 |
commit | dc7a8b1f54463500d2c13339829db6c665f097da (patch) | |
tree | f93e3f2cbc72687e69bfd18945751a1f08743353 /plugins/Clist_nicer | |
parent | 5212643f256d5cf75b295aeb42783c81ce033519 (diff) |
- major atavism removed: clist_modern own cache;
- cache items are never deleted;
- MS_CLIST_INVALIDATEDISPLAYNAME service removed and replaced with pcli->pfnInvalidateDisplayNameCacheEntry() call
git-svn-id: http://svn.miranda-ng.org/main/trunk@16744 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r-- | plugins/Clist_nicer/src/clc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/src/clc.cpp b/plugins/Clist_nicer/src/clc.cpp index 18bf3bb33f..8de01f2815 100644 --- a/plugins/Clist_nicer/src/clc.cpp +++ b/plugins/Clist_nicer/src/clc.cpp @@ -489,7 +489,7 @@ LBL_Def: break;
contact->proto = GetContactProto(wParam);
- CallService(MS_CLIST_INVALIDATEDISPLAYNAME, wParam, 0);
+ pcli->pfnInvalidateDisplayNameCacheEntry(wParam);
mir_tstrncpy(contact->szText, pcli->pfnGetContactDisplayName(wParam, 0), _countof(contact->szText));
RTL_DetectAndSet(contact, 0);
|