diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-14 22:48:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-14 22:48:19 +0000 |
commit | 0c47cccf75bb24c19096ed57dd2d28da66359821 (patch) | |
tree | 2bc88fb7b52908e996342bab5f3f8ee2a9960b5d /plugins/Clist_modern/src/modern_clcutils.cpp | |
parent | c730f12da81f636ecf65aa656a46b9337daaa37a (diff) |
all possible warnings fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11426 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcutils.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clcutils.cpp b/plugins/Clist_modern/src/modern_clcutils.cpp index 9939816e71..7ccfbf227d 100644 --- a/plugins/Clist_modern/src/modern_clcutils.cpp +++ b/plugins/Clist_modern/src/modern_clcutils.cpp @@ -724,7 +724,7 @@ int ExpandMetaContact(HWND hwnd, ClcContact *contact, ClcData *dat, BOOL bExpand int cliFindRowByText(HWND hwnd, ClcData *dat, const TCHAR *text, int prefixOk)
{
ClcGroup *group = &dat->list;
- int testlen = mir_tstrlen(text);
+ int testlen = (int)mir_tstrlen(text);
ClcContact *contact = NULL;
int SubCount = 0;
|