diff options
Diffstat (limited to 'plugins/IgnoreState/src/main.cpp')
-rw-r--r-- | plugins/IgnoreState/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IgnoreState/src/main.cpp b/plugins/IgnoreState/src/main.cpp index c68e6f6d2d..2cea928f09 100644 --- a/plugins/IgnoreState/src/main.cpp +++ b/plugins/IgnoreState/src/main.cpp @@ -229,11 +229,11 @@ int onModulesLoaded(WPARAM wParam,LPARAM lParam) if (hExtraIcon != NULL)
{
// Set initial value for all contacts
- HANDLE hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
+ HANDLE hContact = db_find_first();
while (hContact != NULL)
{
onExtraImageApplying((WPARAM)hContact, NULL);
- hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM) hContact, 0);
+ hContact = db_find_next(hContact);
}
}
else
|