diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-16 19:56:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-16 19:56:59 +0000 |
commit | cf2966326de39e86fa52b34c91aee2a29a31bdab (patch) | |
tree | a6a05803cbb85146c3f1fee249ad0e8998959e51 /protocols/IcqOscarJ/src/icq_db.cpp | |
parent | 2053ba5bd4f1f43d960ddeb40fa10568e2254f25 (diff) |
old helpers FindFirstContact/FindNextContact removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@8144 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_db.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_db.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/protocols/IcqOscarJ/src/icq_db.cpp b/protocols/IcqOscarJ/src/icq_db.cpp index 8246b7ffa1..e99ffa649f 100644 --- a/protocols/IcqOscarJ/src/icq_db.cpp +++ b/protocols/IcqOscarJ/src/icq_db.cpp @@ -190,27 +190,6 @@ HANDLE CIcqProto::AddEvent(MCONTACT hContact, WORD wType, DWORD dwTime, DWORD fl return db_event_add(hContact, &dbei);
}
-MCONTACT CIcqProto::FindFirstContact()
-{
- MCONTACT hContact = db_find_first(m_szModuleName);
-
- if (IsICQContact(hContact))
- return hContact;
-
- return FindNextContact(hContact);
-}
-
-MCONTACT CIcqProto::FindNextContact(MCONTACT hContact)
-{
- hContact = db_find_next(hContact, m_szModuleName);
- while (hContact != NULL) {
- if (IsICQContact(hContact))
- return hContact;
- hContact = db_find_next(hContact, m_szModuleName);
- }
- return hContact;
-}
-
char* CIcqProto::getContactCListGroup(MCONTACT hContact)
{
return getSettingStringUtf(hContact, "CList", "Group", NULL);
|