summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_avatars.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-07-10 20:01:20 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-07-10 20:01:20 +0000
commit00c866aaa0b79c354f9c71ca5d61f57daeec6e6a (patch)
tree0c17ecc96c52562dbf31454a1908e726be2b5c85 /protocols/Skype/src/skype_avatars.cpp
parent343ed18d264ae1b90eda3c64ffb066035997489f (diff)
protocol DB helpers for Skype
git-svn-id: http://svn.miranda-ng.org/main/trunk@5313 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_avatars.cpp')
-rw-r--r--protocols/Skype/src/skype_avatars.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/protocols/Skype/src/skype_avatars.cpp b/protocols/Skype/src/skype_avatars.cpp
index bf9fae9136..4f29a2e8cf 100644
--- a/protocols/Skype/src/skype_avatars.cpp
+++ b/protocols/Skype/src/skype_avatars.cpp
@@ -88,10 +88,8 @@ INT_PTR __cdecl CSkypeProto::GetAvatarInfo(WPARAM, LPARAM lParam)
{
PROTO_AVATAR_INFORMATIONW *pai = (PROTO_AVATAR_INFORMATIONW *)lParam;
- if (::db_get_dw(pai->hContact, this->m_szModuleName, "AvatarTS", 0))
- {
+ if (this->getDword(pai->hContact, "AvatarTS", 0))
return GAIR_NOAVATAR;
- }
ptrW sid = ::db_get_wsa(pai->hContact, this->m_szModuleName, SKYPE_SETTINGS_SID);
if (sid)
@@ -205,12 +203,12 @@ INT_PTR __cdecl CSkypeProto::SetMyAvatar(WPARAM, LPARAM lParam)
}
uint newTS = this->account->GetUintProp(Account::P_AVATAR_IMAGE);
- ::db_set_dw(NULL, this->m_szModuleName, "AvatarTS", newTS);
+ this->setDword("AvatarTS", newTS);
return 0;
}
this->account->SetBinProperty(Account::P_AVATAR_IMAGE, SEBinary());
- ::db_unset(NULL, this->m_szModuleName, "AvatarTS");
+ this->delSetting("AvatarTS");
return 0;
}