diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-15 17:43:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-15 17:43:23 +0000 |
commit | b43dcf000f703e3ef421350f74208cf4c7cdea77 (patch) | |
tree | b4c4de1422fd5f6945f2f71c649a28f45d614fd7 /protocols/Gadu-Gadu/services.cpp | |
parent | 3b3200e91d1c76f0fdd6565c3c3bc1824d1a4a03 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@979 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/services.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/services.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/services.cpp b/protocols/Gadu-Gadu/services.cpp index 921553fadb..a172d10609 100644 --- a/protocols/Gadu-Gadu/services.cpp +++ b/protocols/Gadu-Gadu/services.cpp @@ -116,7 +116,7 @@ int GGPROTO::refreshstatus(int status) LeaveCriticalSection(&sess_mutex);
}
// Change status of the contact with our own UIN (if got yourself added to the contact list)
- changecontactstatus(db_get_b(NULL, m_szModuleName, GG_KEY_UIN, 0), status_m2gg(status, szMsg != NULL), szMsg, 0, 0, 0, 0);
+ changecontactstatus( db_get_dw(NULL, m_szModuleName, GG_KEY_UIN, 0), status_m2gg(status, szMsg != NULL), szMsg, 0, 0, 0, 0);
broadcastnewstatus(status);
mir_free(szMsg);
}
@@ -172,7 +172,7 @@ INT_PTR GGPROTO::getavatarinfo(WPARAM wParam, LPARAM lParam) char *AvatarURL = NULL;
INT_PTR result = GAIR_NOAVATAR;
DBVARIANT dbv;
- uin_t uin = (uin_t)db_get_b(pai->hContact, m_szModuleName, GG_KEY_UIN, 0);
+ uin_t uin = (uin_t)db_get_dw(pai->hContact, m_szModuleName, GG_KEY_UIN, 0);
netlog("gg_getavatarinfo(): Requesting avatar information for %d.", uin);
|