diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-08 08:19:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-08 08:19:59 +0000 |
commit | b69451fd2e4166cfa7aad6b96047c70f7545eadc (patch) | |
tree | ecd5e75d88b6386cbe7de766ac8774313722b270 /plugins/TabSRMM/src/msgdialog.cpp | |
parent | cd3898d8ea6f3fc53950f91544c1db2ee86c60d6 (diff) |
- warning fixes;
- more cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@17168 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index e8ae781eda..1f5349381c 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -1334,7 +1334,7 @@ INT_PTR CALLBACK DlgProcMessage(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l dat->cache->updateStats(TSessionStats::INIT_TIMER);
if (dat->hContact) {
FindFirstEvent(dat);
- dat->nMax = dat->cache->getMaxMessageLength();
+ dat->nMax = (int)dat->cache->getMaxMessageLength();
}
LoadContactAvatar(dat);
SendMessage(hwndDlg, DM_OPTIONSAPPLIED, 0, 0);
|