diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-14 18:28:24 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-14 18:28:24 +0000 |
commit | 68a3fc7b15763f415970ec49623a449fbae41e7c (patch) | |
tree | 7844790dc04e583853f70f4058f41d5932b4f64f /protocols/SkypeWeb/src/skype_utils.cpp | |
parent | 6c47e76c6d7296528b55d514910a6af1663f7b99 (diff) |
SkypeWeb: Unneeded code removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14954 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_utils.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_utils.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/protocols/SkypeWeb/src/skype_utils.cpp b/protocols/SkypeWeb/src/skype_utils.cpp index bfdaf2ab56..72e912cd61 100644 --- a/protocols/SkypeWeb/src/skype_utils.cpp +++ b/protocols/SkypeWeb/src/skype_utils.cpp @@ -25,24 +25,6 @@ void CSkypeProto::FreeCharList(const LIST<char> &lst) mir_free(lst[i]);
}
-void CSkypeProto::SetSrmmReadStatus(MCONTACT hContact)
-{
- time_t time = getDword(hContact, "LastMsgReadTime", 0);
- if (!time)
- return;
-
- TCHAR ttime[64];
- _locale_t locale = _create_locale(LC_ALL, "");
- _tcsftime_l(ttime, _countof(ttime), _T("%X - %x"), localtime(&time), locale);
- _free_locale(locale);
-
- StatusTextData st = { 0 };
- st.cbSize = sizeof(st);
- st.hIcon = Skin_LoadIcon(SKINICON_OTHER_HISTORY);
- mir_sntprintf(st.tszText, _countof(st.tszText), TranslateT("Message read: %s"), ttime);
- CallService(MS_MSG_SETSTATUSTEXT, (WPARAM)hContact, (LPARAM)&st);
-}
-
time_t CSkypeProto::IsoToUnixTime(const char *stamp)
{
char date[9];
|