summaryrefslogtreecommitdiff
path: root/plugins/Dbx_mmap_SA/src/security.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-12-30 13:10:17 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-12-30 13:10:17 +0000
commitbb4dacc84d5edf29afb4352af1b1ad742949c0b3 (patch)
tree5c5346fdb54f8504020139abdbc5de24d713af53 /plugins/Dbx_mmap_SA/src/security.cpp
parent60d2f4aefe8ec6e16d2aa64f585895ea95d7dda9 (diff)
faster conversion implementation
git-svn-id: http://svn.miranda-ng.org/main/trunk@7426 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mmap_SA/src/security.cpp')
-rw-r--r--plugins/Dbx_mmap_SA/src/security.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mmap_SA/src/security.cpp b/plugins/Dbx_mmap_SA/src/security.cpp
index eb997e1eb8..7b53a88187 100644
--- a/plugins/Dbx_mmap_SA/src/security.cpp
+++ b/plugins/Dbx_mmap_SA/src/security.cpp
@@ -176,7 +176,7 @@ int SelectEncoder()
void CDbxMmapSA::EncodeAll()
{
- for (HANDLE hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
+ for (HANDLE hContact = FindFirstContact(); hContact; hContact = FindNextContact(hContact)) {
EncodeContactEvents(hContact);
EncodeContactSettings(hContact);
}
@@ -187,7 +187,7 @@ void CDbxMmapSA::EncodeAll()
void CDbxMmapSA::DecodeAll()
{
- for (HANDLE hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
+ for (HANDLE hContact = FindFirstContact(); hContact; hContact = FindNextContact(hContact)) {
DecodeContactEvents(hContact);
DecodeContactSettings(hContact);
}