diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-30 12:03:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-30 12:03:09 +0000 |
commit | dafcac872a4631fef8d3ba4c8e895e4316b88814 (patch) | |
tree | 20596125354c65d1e6858d249ab17abb1dbb6e56 /plugins/Clist_modern/src/modern_clcitems.cpp | |
parent | 94e565e4774327b30af368e7aa3bfc0c7cace5b9 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@1274 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcitems.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcitems.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_clcitems.cpp b/plugins/Clist_modern/src/modern_clcitems.cpp index 6e5d78a0c7..412f961496 100644 --- a/plugins/Clist_modern/src/modern_clcitems.cpp +++ b/plugins/Clist_modern/src/modern_clcitems.cpp @@ -348,7 +348,7 @@ int RestoreSelection( struct ClcData *dat, HANDLE hSelected ) dat->selection = pcli->pfnGetRowsPriorTo(&dat->list, selgroup, List_IndexOf((SortedList*)&selgroup->cl, selcontact->subcontacts ));
if (dat->selection != -1 )
- dat->selection += selcontact->isSubcontact;
+ dat->selection += selcontact->isSubcontact;
}
return dat->selection;
@@ -726,7 +726,7 @@ int cliGetGroupContentsCount(struct ClcGroup *group, int visibleOnly) else if (group->cl.items[group->scanIndex]->type == CLCIT_GROUP && (!(visibleOnly&0x01) || group->cl.items[group->scanIndex]->group->expanded)) {
group = group->cl.items[group->scanIndex]->group;
group->scanIndex = 0;
- count += group->cl.count;
+ count += group->cl.count;
continue;
}
else if ((group->cl.items[group->scanIndex]->type == CLCIT_CONTACT) &&
@@ -806,7 +806,7 @@ int __fastcall CLVM_GetContactHiddenStatus(HANDLE hContact, char *szProto, struc PDNCE pdnce = (PDNCE)pcli->pfnGetCacheEntry(hContact);
if (pdnce) {
now = g_CluiData.t_now;
- now -= g_CluiData.lastMsgFilter;
+ now -= g_CluiData.lastMsgFilter;
if (g_CluiData.bFilterEffective & CLVM_FILTER_LASTMSG_OLDERTHAN)
filterResult = filterResult & (pdnce->dwLastMsgTime < now);
else if (g_CluiData.bFilterEffective & CLVM_FILTER_LASTMSG_NEWERTHAN)
|