diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-03-20 16:57:19 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-03-20 16:57:19 +0000 |
commit | 91996a2f0ab5228acdfac1d0c662d68339a0ed79 (patch) | |
tree | b415191b2169e51f1c37688a8f01a90b54584c17 /protocols/VKontakte/src/vk_wallpost.cpp | |
parent | 3015b86003db0edc9b1da8707a302cddc36855e5 (diff) |
VK: code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@16518 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/vk_wallpost.cpp')
-rw-r--r-- | protocols/VKontakte/src/vk_wallpost.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/VKontakte/src/vk_wallpost.cpp b/protocols/VKontakte/src/vk_wallpost.cpp index f4fbe65d66..909d167269 100644 --- a/protocols/VKontakte/src/vk_wallpost.cpp +++ b/protocols/VKontakte/src/vk_wallpost.cpp @@ -108,8 +108,7 @@ void CVkProto::WallPost(MCONTACT hContact, TCHAR *ptszMsg, TCHAR *ptszUrl, bool AsyncHttpRequest *pReq = new AsyncHttpRequest(this, REQUEST_POST, "/method/wall.post.json", true, &CVkProto::OnReceiveSmth)
<< INT_PARAM("owner_id", userID)
- << INT_PARAM("friends_only", bFriendsOnly ? 1 : 0)
- << VER_API;
+ << INT_PARAM("friends_only", bFriendsOnly ? 1 : 0);
if (!IsEmpty(ptszMsg))
pReq << TCHAR_PARAM("message", ptszMsg);
|