diff options
Diffstat (limited to 'plugins/Actman/i_contact.inc')
-rw-r--r-- | plugins/Actman/i_contact.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Actman/i_contact.inc b/plugins/Actman/i_contact.inc index f73325121e..c73df31435 100644 --- a/plugins/Actman/i_contact.inc +++ b/plugins/Actman/i_contact.inc @@ -19,7 +19,7 @@ begin if format=nil then format:=defformat;
SendMessage(list,CB_RESETCONTENT,0,0);
- hContact:=CallService(MS_DB_CONTACT_FINDFIRST,0,0);
+ hContact:=db_find_first();
lName :=StrPosW(format,'%name%')<>nil;
lGroup :=StrPosW(format,'%group%')<>nil;
@@ -92,7 +92,7 @@ begin SendMessageW(list,CB_ADDSTRING,0,tlparam(@buf)),
hContact);
end;
- hContact:=CallService(MS_DB_CONTACT_FINDNEXT,hContact,0);
+ hContact:=db_find_next(hContact);
end;
end;
|