diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-23 12:32:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-23 12:32:34 +0000 |
commit | f0ff6972eb5fecda4218fcea6686194f1b52e704 (patch) | |
tree | b60680c9ca6f7c5fd8b57a7760c625e0371e05f5 /plugins/Utils | |
parent | 8788bb35e10ef5403a08388d33ed4ab2ff7d67df (diff) |
various warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@5095 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils')
-rw-r--r-- | plugins/Utils/mir_smileys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Utils/mir_smileys.cpp b/plugins/Utils/mir_smileys.cpp index e512273c17..f8db3fbbd9 100644 --- a/plugins/Utils/mir_smileys.cpp +++ b/plugins/Utils/mir_smileys.cpp @@ -134,7 +134,7 @@ int Smileys_DrawText(HDC hDC, LPCTSTR lpString, int nCount, LPRECT lpRect, UINT int ret;
if (nCount < 0)
- nCount = _tcslen(lpString);
+ nCount = (int)_tcslen(lpString);
// Get parse info
if (parseInfo == NULL)
|