diff options
Diffstat (limited to 'plugins/Dbx_mmap_SA/src/security.cpp')
-rw-r--r-- | plugins/Dbx_mmap_SA/src/security.cpp | 4 |
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);
}
|