diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-03 17:37:17 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-03 17:37:17 +0300 |
commit | 6e24fb4c04e26ae2804fea9134b3cd0fc1b1cfc3 (patch) | |
tree | fc2b5cd52c4bcc834fb8a156ca95d71890ada1c6 /protocols/Twitter | |
parent | 44014255930f7179b4f096b00e08893de48c7789 (diff) |
it's senseless to declare GetName member for the descendants of PROTO
Diffstat (limited to 'protocols/Twitter')
-rw-r--r-- | protocols/Twitter/src/proto.cpp | 7 | ||||
-rw-r--r-- | protocols/Twitter/src/proto.h | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/protocols/Twitter/src/proto.cpp b/protocols/Twitter/src/proto.cpp index 5f9aca161e..4d00afc349 100644 --- a/protocols/Twitter/src/proto.cpp +++ b/protocols/Twitter/src/proto.cpp @@ -30,7 +30,6 @@ TwitterProto::TwitterProto(const char *proto_name, const wchar_t *username) : PROTO<TwitterProto>(proto_name, username)
{
CreateProtoService(PS_CREATEACCMGRUI, &TwitterProto::SvcCreateAccMgrUI);
- CreateProtoService(PS_GETNAME, &TwitterProto::GetName);
CreateProtoService(PS_GETSTATUS, &TwitterProto::GetStatus);
CreateProtoService(PS_JOINCHAT, &TwitterProto::OnJoinChat);
@@ -206,12 +205,6 @@ INT_PTR TwitterProto::SvcCreateAccMgrUI(WPARAM, LPARAM lParam) return (INT_PTR)CreateDialogParam(g_hInstance, MAKEINTRESOURCE(IDD_TWITTERACCOUNT), (HWND)lParam, first_run_dialog, (LPARAM)this);
}
-INT_PTR TwitterProto::GetName(WPARAM wParam, LPARAM lParam)
-{
- mir_strncpy(reinterpret_cast<char*>(lParam), m_szModuleName, (int)wParam);
- return 0;
-}
-
INT_PTR TwitterProto::GetStatus(WPARAM, LPARAM)
{
return m_iStatus;
diff --git a/protocols/Twitter/src/proto.h b/protocols/Twitter/src/proto.h index c18ee3b6e5..a62c462045 100644 --- a/protocols/Twitter/src/proto.h +++ b/protocols/Twitter/src/proto.h @@ -49,7 +49,6 @@ public: // Services
INT_PTR __cdecl SvcCreateAccMgrUI(WPARAM,LPARAM);
- INT_PTR __cdecl GetName(WPARAM,LPARAM);
INT_PTR __cdecl GetStatus(WPARAM,LPARAM);
INT_PTR __cdecl ReplyToTweet(WPARAM,LPARAM);
INT_PTR __cdecl VisitHomepage(WPARAM,LPARAM);
|