From 286f6d8ed325ca5f726e6ba5fad86fb834d51c16 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 23 May 2016 14:46:56 +0000 Subject: fix for wrongly named variables git-svn-id: http://svn.miranda-ng.org/main/trunk@16865 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_modern/src/modern_cachefuncs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Clist_modern/src/modern_cachefuncs.cpp') diff --git a/plugins/Clist_modern/src/modern_cachefuncs.cpp b/plugins/Clist_modern/src/modern_cachefuncs.cpp index 58d61c52bd..99d5a93fcc 100644 --- a/plugins/Clist_modern/src/modern_cachefuncs.cpp +++ b/plugins/Clist_modern/src/modern_cachefuncs.cpp @@ -607,8 +607,8 @@ static BOOL ExecuteOnAllContactsOfGroup(ClcGroup *group, ExecuteOnAllContactsFun if (!func(group->cl.items[scanIndex], FALSE, param)) return FALSE; - if (group->cl.items[scanIndex]->SubAllocated > 0) { - for (int i = 0; i < group->cl.items[scanIndex]->SubAllocated; i++) + if (group->cl.items[scanIndex]->iSubAllocated > 0) { + for (int i = 0; i < group->cl.items[scanIndex]->iSubAllocated; i++) if (!func(&group->cl.items[scanIndex]->subcontacts[i], TRUE, param)) return FALSE; } -- cgit v1.2.3