diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-04-29 05:05:06 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-04-29 05:05:06 +0000 |
commit | 68aeed54fb2c7c7d10c192a99c25d0a0c870b017 (patch) | |
tree | c6d0056480519c69823db8374fcde3eb72b4eef5 /protocols/Skype/src/skype_avatars.cpp | |
parent | f0ca17cf986fc21dd98037a4599e85437261d5de (diff) |
- added new db event type
- added new icons
- fixed few bugs
git-svn-id: http://svn.miranda-ng.org/main/trunk@4565 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_avatars.cpp')
-rw-r--r-- | protocols/Skype/src/skype_avatars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_avatars.cpp b/protocols/Skype/src/skype_avatars.cpp index c95d4e3d2a..adf956edeb 100644 --- a/protocols/Skype/src/skype_avatars.cpp +++ b/protocols/Skype/src/skype_avatars.cpp @@ -210,7 +210,7 @@ INT_PTR __cdecl CSkypeProto::SetMyAvatar(WPARAM, LPARAM lParam) return iRet;
}
- uint newTS = this->account->GetUintProp(/* *::P_AVATAR_TIMESTAMP */ 182);
+ uint newTS = this->account->GetUintProp(Account::P_AVATAR_IMAGE);
::db_set_dw(NULL, this->m_szModuleName, "AvatarTS", newTS);
iRet = 0;
|