diff options
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcidents.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcidents.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_clcidents.cpp b/plugins/Clist_modern/src/modern_clcidents.cpp index 8397e32f7f..ad5580a465 100644 --- a/plugins/Clist_modern/src/modern_clcidents.cpp +++ b/plugins/Clist_modern/src/modern_clcidents.cpp @@ -173,7 +173,7 @@ int FindItem(HWND hwnd,ClcData *dat,HANDLE hItem,ClcContact **contact,ClcGroup * if (IsBadWritePtr(&group->cl.items[group->scanIndex]->subcontacts[i], sizeof(ClcContact)))
{
log1("FindIltem->IsBadWritePtr | 2o [%08x]", &group->cl.items[group->scanIndex]->subcontacts[i]);
- PostMessage(hwnd,CLM_AUTOREBUILD,0,0);
+ PostMessage(hwnd,CLM_AUTOREBUILD, 0, 0);
return 0;
}
@@ -205,13 +205,13 @@ void ClearRowByIndexCache() {
if ( !CacheIndexClear)
{
- memset(CacheIndex,0,sizeof(CacheIndex));
+ memset(CacheIndex, 0, sizeof(CacheIndex));
CacheIndexClear = TRUE;
};
}
int cliGetRowByIndex(ClcData *dat,int testindex,ClcContact **contact,ClcGroup **subgroup)
{
- int index = 0,i;
+ int index = 0, i;
ClcGroup *group = &dat->list;
if (testindex < 0) return (-1);
|