diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-11 13:52:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-11 13:52:01 +0000 |
commit | a15cd68f0412e1b211e746a2e4d5682e96f5a113 (patch) | |
tree | d09d41832621cfc07957dbbcd60077fdf96b7e66 /protocols/Yahoo/src/avatar.cpp | |
parent | 85bd008c039eb1d93894e94fba9d158a42a71a12 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14911 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/avatar.cpp')
-rw-r--r-- | protocols/Yahoo/src/avatar.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/Yahoo/src/avatar.cpp b/protocols/Yahoo/src/avatar.cpp index e0ea4d6f15..846325cf3e 100644 --- a/protocols/Yahoo/src/avatar.cpp +++ b/protocols/Yahoo/src/avatar.cpp @@ -41,7 +41,7 @@ int YAHOO_avt_hash(const char *key, DWORD len) /**************** Send Avatar ********************/
-void upload_avt(int id, INT_PTR fd, int error, void *data)
+void upload_avt(int, INT_PTR fd, int error, void *data)
{
struct yahoo_file_info *sf = (struct yahoo_file_info*) data;
unsigned long size = 0;
@@ -250,7 +250,7 @@ void __cdecl CYahooProto::recv_avatarthread(void *pavt) ProtoBroadcastAck(hContact, ACKTYPE_AVATAR, !error ? ACKRESULT_SUCCESS : ACKRESULT_FAILED, (HANDLE)&ai, 0);
}
-void CYahooProto::ext_got_picture(const char *me, const char *who, const char *pic_url, int cksum, int type)
+void CYahooProto::ext_got_picture(const char*, const char *who, const char *pic_url, int cksum, int type)
{
MCONTACT hContact = 0;
@@ -446,7 +446,7 @@ void CYahooProto::ext_got_picture(const char *me, const char *who, const char *p LOG(("ext_yahoo_got_picture exiting"));
}
-void CYahooProto::ext_got_picture_checksum(const char *me, const char *who, int cksum)
+void CYahooProto::ext_got_picture_checksum(const char*, const char *who, int cksum)
{
LOG(("ext_yahoo_got_picture_checksum for %s checksum: %d", who, cksum));
@@ -482,7 +482,7 @@ void CYahooProto::ext_got_picture_checksum(const char *me, const char *who, int }
}
-void CYahooProto::ext_got_picture_update(const char *me, const char *who, int buddy_icon)
+void CYahooProto::ext_got_picture_update(const char*, const char *who, int buddy_icon)
{
LOG(("ext_got_picture_update for %s buddy_icon: %d", who, buddy_icon));
@@ -498,7 +498,7 @@ void CYahooProto::ext_got_picture_update(const char *me, const char *who, int bu reset_avatar(hContact);
}
-void CYahooProto::ext_got_picture_status(const char *me, const char *who, int buddy_icon)
+void CYahooProto::ext_got_picture_status(const char*, const char *who, int buddy_icon)
{
MCONTACT hContact = 0;
@@ -516,7 +516,7 @@ void CYahooProto::ext_got_picture_status(const char *me, const char *who, int bu reset_avatar(hContact);
}
-void CYahooProto::ext_got_picture_upload(const char *me, const char *url, unsigned int ts)
+void CYahooProto::ext_got_picture_upload(const char*, const char *url, unsigned int ts)
{
int cksum = 0;
DBVARIANT dbv;
@@ -782,7 +782,7 @@ lParam=(const char *)Avatar file name return=0 for sucess
*/
-INT_PTR __cdecl CYahooProto::SetMyAvatar(WPARAM wParam, LPARAM lParam)
+INT_PTR __cdecl CYahooProto::SetMyAvatar(WPARAM, LPARAM lParam)
{
TCHAR* tszFile = (TCHAR*)lParam;
TCHAR tszMyFile[MAX_PATH + 1];
|