summaryrefslogtreecommitdiff
path: root/plugins/CyrTranslit/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-10 07:46:53 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-10 07:46:53 +0000
commitf90be5cdeec5875d1022e1ef35f5b101bd76ac84 (patch)
tree59e5e8bf3b6a87dbee148bd63f841a8a62daac5f /plugins/CyrTranslit/src
parented10055737300c07e485eb22b27ccf92ffadab7c (diff)
service call replaced with the direct function call
git-svn-id: http://svn.miranda-ng.org/main/trunk@1857 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CyrTranslit/src')
-rw-r--r--plugins/CyrTranslit/src/MirandaContact.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/CyrTranslit/src/MirandaContact.cpp b/plugins/CyrTranslit/src/MirandaContact.cpp
index 1a0f149ef8..0f5df412b2 100644
--- a/plugins/CyrTranslit/src/MirandaContact.cpp
+++ b/plugins/CyrTranslit/src/MirandaContact.cpp
@@ -127,8 +127,9 @@ void MirandaContact::generateMenuItemsForAllContacts()
void MirandaContact::activateTransliterationProtocolForSubscribedContacts()
{
- int hContact = CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
- if(!hContact) return;
+ HANDLE hContact = db_find_first();
+ if(!hContact)
+ return;
do
{
@@ -138,7 +139,7 @@ void MirandaContact::activateTransliterationProtocolForSubscribedContacts()
{
TransliterationProtocol::activateForContact(mc.handle);
}
- } while(hContact = CallService(MS_DB_CONTACT_FINDNEXT, hContact, 0));
+ } while(hContact = db_find_next(hContact));
}
//------------------------------------------------------------------------------