diff options
author | George Hazan <ghazan@miranda.im> | 2019-05-29 19:16:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-05-29 19:16:55 +0300 |
commit | 68e4b1b9f6c46df3f46952a40d9f3b1d11323418 (patch) | |
tree | 400bc4d8f913c2b45f3e204d7031f5d4264d7b80 /plugins/TabSRMM/src | |
parent | a885f65161f8bb5ddfc6286dbe50905cf14c4c51 (diff) |
warning fixes
Diffstat (limited to 'plugins/TabSRMM/src')
-rw-r--r-- | plugins/TabSRMM/src/msglog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/TabSRMM/src/msglog.cpp b/plugins/TabSRMM/src/msglog.cpp index 84e7ddfb1d..e8a22c1536 100644 --- a/plugins/TabSRMM/src/msglog.cpp +++ b/plugins/TabSRMM/src/msglog.cpp @@ -97,7 +97,7 @@ struct LogStreamData { DBEVENTINFO *dbei;
};
-__forceinline char *GetRTFFont(DWORD dwIndex)
+__forceinline char* GetRTFFont(DWORD dwIndex)
{
return rtfFonts + (dwIndex * RTFCACHELINESIZE);
}
@@ -862,7 +862,7 @@ static char* Template_CreateRTFFromDbEvent(CTabBaseDlg *dat, MCONTACT hContact, ptrW tszDescr(DbEvent_GetString(&dbei, szDescr));
wchar_t buf[1000];
- mir_snwprintf(buf, L"%s (%s)", tszFileName, tszDescr);
+ mir_snwprintf(buf, L"%s (%s)", tszFileName.get(), tszDescr.get());
AppendUnicodeToBuffer(str, buf, 0);
}
else AppendUnicodeToBuffer(str, tszFileName, 0);
@@ -1160,7 +1160,7 @@ void CTabBaseDlg::ReplaceIcons(LONG startAt, int fAppend, BOOL isSent) if (m_hHistoryEvents && m_curHistory == m_maxHistory) {
wchar_t szPattern[50];
- mir_snwprintf(szPattern, L"~-+%d+-~", (INT_PTR)m_hHistoryEvents[0]);
+ mir_snwprintf(szPattern, L"~-+%d+-~", m_hHistoryEvents[0]);
FINDTEXTEX ft;
ft.lpstrText = szPattern;
@@ -1336,8 +1336,8 @@ void CTabBaseDlg::StreamInEvents(MEVENT hDbEventFirst, int count, int fAppend, D m_bClrAdded = false;
if (m_hwndIEView == nullptr && m_hwndHPP == nullptr) {
- int len = GetWindowTextLength(hwndrtf);
- m_log.SendMsg(EM_SETSEL, len - 1, len - 1);
+ int len = GetWindowTextLength(hwndrtf)-1;
+ m_log.SendMsg(EM_SETSEL, len, len);
}
DM_ScrollToBottom(0, 0);
|