diff options
Diffstat (limited to 'plugins/Clist_modern/src/modern_contact.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_contact.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/plugins/Clist_modern/src/modern_contact.cpp b/plugins/Clist_modern/src/modern_contact.cpp index db1fe14218..c998d4400c 100644 --- a/plugins/Clist_modern/src/modern_contact.cpp +++ b/plugins/Clist_modern/src/modern_contact.cpp @@ -47,7 +47,6 @@ static int GetContactStatus(MCONTACT hContact) return (GetContactCachedStatus(hContact));
}
-
void cli_ChangeContactIcon(MCONTACT hContact, int iIcon, int add)
{
corecli.pfnChangeContactIcon(hContact, iIcon, add);
@@ -55,13 +54,12 @@ void cli_ChangeContactIcon(MCONTACT hContact, int iIcon, int add) static int GetStatusModeOrdering(int statusMode)
{
- int i;
- for (i=0; i < SIZEOF(statusModeOrder); i++)
- if (statusModeOrder[i].m_cache_nStatus == statusMode) return statusModeOrder[i].order;
+ for (int i=0; i < SIZEOF(statusModeOrder); i++)
+ if (statusModeOrder[i].m_cache_nStatus == statusMode)
+ return statusModeOrder[i].order;
return 1000;
}
-
DWORD CompareContacts2_getLMTime(MCONTACT hContact)
{
HANDLE hDbEvent = db_event_last(hContact);
@@ -70,7 +68,7 @@ DWORD CompareContacts2_getLMTime(MCONTACT hContact) db_event_get(hDbEvent, &dbei);
if (dbei.eventType == EVENTTYPE_MESSAGE && !(dbei.flags & DBEF_SENT))
return dbei.timestamp;
- hDbEvent = db_event_prev(hDbEvent);
+ hDbEvent = db_event_prev(hContact, hDbEvent);
}
return 0;
}
|