diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-22 14:55:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-22 14:55:04 +0000 |
commit | 28c30ab287d4eb338b83113a0f6d27081cd72785 (patch) | |
tree | 5c13611902cd3facf0bb1488b650bec6b1e8f38b | |
parent | ae4274ae6c7425b37f9f75032b38301e04dbd71e (diff) |
no, unique settings are not always strings... (ICQ suxx & must die)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9921 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/metacontacts/meta_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/metacontacts/meta_utils.cpp b/src/modules/metacontacts/meta_utils.cpp index 48f3ad0105..c1bd9551d7 100644 --- a/src/modules/metacontacts/meta_utils.cpp +++ b/src/modules/metacontacts/meta_utils.cpp @@ -495,8 +495,8 @@ static void SwapValues(MCONTACT hContact, LPCSTR szSetting, int n1, int n2) mir_snprintf(buf2, sizeof(buf2), "%s%d", szSetting, n2);
DBVARIANT dbv1, dbv2;
- int ok1 = !db_get_s(hContact, META_PROTO, buf1, &dbv1, 0);
- int ok2 = !db_get_s(hContact, META_PROTO, buf2, &dbv2, 0);
+ int ok1 = !db_get(hContact, META_PROTO, buf1, &dbv1);
+ int ok2 = !db_get(hContact, META_PROTO, buf2, &dbv2);
if (ok1) {
db_set(hContact, META_PROTO, buf2, &dbv1);
db_free(&dbv1);
|