diff options
author | George Hazan <ghazan@miranda.im> | 2020-02-19 12:31:20 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-02-19 12:31:20 +0300 |
commit | 46fd8bbce689895bfbaaa08d9bad73b879e17172 (patch) | |
tree | 965513d22957bad31ea5d6fb2ea8f9ea94c9cd75 /protocols/Twitter/src/contacts.cpp | |
parent | 845d6d07ee1c6c87c7dacae4f0ba0a803a5aff3d (diff) |
Twitter:
- fixes #2218 (add support for private messages);
- code optimization;
- support for JSON requests;
- fixed base url;
Diffstat (limited to 'protocols/Twitter/src/contacts.cpp')
-rw-r--r-- | protocols/Twitter/src/contacts.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Twitter/src/contacts.cpp b/protocols/Twitter/src/contacts.cpp index 01524b6a12..cd8fb08162 100644 --- a/protocols/Twitter/src/contacts.cpp +++ b/protocols/Twitter/src/contacts.cpp @@ -43,7 +43,7 @@ MCONTACT CTwitterProto::AddToList(int, PROTOSEARCHRESULT *psr) return AddToClientList(_T2A(psr->nick.w), "");
}
-// *************************
+/////////////////////////////////////////////////////////////////////////////////////////
void CTwitterProto::UpdateInfoWorker(void *arg)
{
@@ -79,7 +79,7 @@ int CTwitterProto::GetInfo(MCONTACT hContact, int info_type) return 1;
}
-// *************************
+/////////////////////////////////////////////////////////////////////////////////////////
struct search_query
{
@@ -136,7 +136,7 @@ HANDLE CTwitterProto::SearchByEmail(const wchar_t *email) return (HANDLE)1;
}
-// *************************
+/////////////////////////////////////////////////////////////////////////////////////////
void CTwitterProto::GetAwayMsgWorker(void *arg)
{
@@ -195,7 +195,7 @@ int CTwitterProto::OnMarkedRead(WPARAM, LPARAM hDbEvent) return 0;
}
-// *************************
+/////////////////////////////////////////////////////////////////////////////////////////
bool CTwitterProto::IsMyContact(MCONTACT hContact, bool include_chat)
{
|