From 29caf2ccc31bc009d25b577cfc1cfbd82163aa3b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 8 Mar 2013 13:41:31 +0000 Subject: major speedup of clist nicer+ cache git-svn-id: http://svn.miranda-ng.org/main/trunk@3920 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_nicer/src/viewmodes.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins/Clist_nicer/src/viewmodes.cpp') diff --git a/plugins/Clist_nicer/src/viewmodes.cpp b/plugins/Clist_nicer/src/viewmodes.cpp index 7442fc6e3e..2e6809b847 100644 --- a/plugins/Clist_nicer/src/viewmodes.cpp +++ b/plugins/Clist_nicer/src/viewmodes.cpp @@ -1122,8 +1122,10 @@ void ApplyViewMode(const char *name) BYTE bSaved = cfg::dat.sortOrder[0]; cfg::dat.sortOrder[0] = SORTBY_LASTMSG; - for (int i = 0; i < cfg::nextCacheEntry; i++) - cfg::eCache[i].dwLastMsgTime = INTSORT_GetLastMsgTime(cfg::eCache[i].hContact); + for (int i = 0; i < cfg::arCache.getCount(); i++) { + TExtraCache *p = cfg::arCache[i]; + p->dwLastMsgTime = INTSORT_GetLastMsgTime(p->hContact); + } cfg::dat.sortOrder[0] = bSaved; -- cgit v1.2.3