summaryrefslogtreecommitdiff
path: root/plugins/ExtraIcons/src/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ExtraIcons/src/options.cpp')
-rw-r--r--plugins/ExtraIcons/src/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExtraIcons/src/options.cpp b/plugins/ExtraIcons/src/options.cpp
index f1f1371403..18d7b361a6 100644
--- a/plugins/ExtraIcons/src/options.cpp
+++ b/plugins/ExtraIcons/src/options.cpp
@@ -56,12 +56,12 @@ BOOL ScreenToClient(HWND hWnd, LPRECT lpRect)
static void RemoveExtraIcons(int slot)
{
- HANDLE hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
+ HANDLE hContact = db_find_first();
while (hContact != NULL)
{
Clist_SetExtraIcon(hContact, slot, INVALID_HANDLE_VALUE);
- hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM) hContact, 0);
+ hContact = db_find_next(hContact);
}
}