diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-16 21:07:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-16 21:07:15 +0000 |
commit | 970946fb23d2555a6d08cd0c5c065d7fd4bee322 (patch) | |
tree | ff8ef6a83b7cfd9270ba5d8eb89dc0ab2ff77c2d /protocols/Twitter | |
parent | 0df68ef45f3467047892d9b5547329aaac6e56f0 (diff) |
PS_CHANGEINFO is never called, and therefore exterminated
git-svn-id: http://svn.miranda-ng.org/main/trunk@8147 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter')
-rw-r--r-- | protocols/Twitter/src/proto.h | 2 | ||||
-rw-r--r-- | protocols/Twitter/src/stubs.cpp | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/protocols/Twitter/src/proto.h b/protocols/Twitter/src/proto.h index 7ad5188626..659e2b41d5 100644 --- a/protocols/Twitter/src/proto.h +++ b/protocols/Twitter/src/proto.h @@ -44,8 +44,6 @@ public: virtual int __cdecl AuthRecv(MCONTACT, PROTORECVEVENT *);
virtual int __cdecl AuthRequest(MCONTACT, const TCHAR *);
- virtual HANDLE __cdecl ChangeInfo(int,void *);
-
virtual HANDLE __cdecl FileAllow(MCONTACT, HANDLE, const TCHAR *);
virtual int __cdecl FileCancel(MCONTACT, HANDLE);
virtual int __cdecl FileDeny(MCONTACT, HANDLE, const TCHAR *);
diff --git a/protocols/Twitter/src/stubs.cpp b/protocols/Twitter/src/stubs.cpp index a959f6d487..2fc9aebacc 100644 --- a/protocols/Twitter/src/stubs.cpp +++ b/protocols/Twitter/src/stubs.cpp @@ -42,12 +42,6 @@ int TwitterProto::AuthRequest(MCONTACT hContact,const TCHAR *message) return 1;
}
-HANDLE TwitterProto::ChangeInfo(int type,void *info_data)
-{
- MessageBoxA(0,"ChangeInfo","",0);
- return NULL;
-}
-
HANDLE TwitterProto::FileAllow(MCONTACT hContact,HANDLE hTransfer,const TCHAR *path)
{
return NULL;
|