diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-13 20:12:58 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-13 20:12:58 +0000 |
commit | 0556f99729354666e6a08e0b14f332d7ed3f64ef (patch) | |
tree | f90c2012dc3a217c7a84c9276d4101215867847d /src/modules/clist/clcmsgs.cpp | |
parent | ca9e826e27ec51c2cff31545204bb462cdd9fb63 (diff) |
one more part not needed checks
git-svn-id: http://svn.miranda-ng.org/main/trunk@10985 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist/clcmsgs.cpp')
-rw-r--r-- | src/modules/clist/clcmsgs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/clist/clcmsgs.cpp b/src/modules/clist/clcmsgs.cpp index a3d477c871..c2bfae6ae4 100644 --- a/src/modules/clist/clcmsgs.cpp +++ b/src/modules/clist/clcmsgs.cpp @@ -174,7 +174,7 @@ LRESULT fnProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPAR return (LRESULT)dat->himlExtraColumns;
case CLM_GETFONT:
- if (wParam < 0 || wParam > FONTID_MAX)
+ if (wParam > FONTID_MAX)
return 0;
return (LRESULT)dat->fontInfo[wParam].hFont;
@@ -301,7 +301,7 @@ LRESULT fnProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPAR }
case CLM_GETTEXTCOLOR:
- if (wParam < 0 || wParam > FONTID_MAX)
+ if (wParam > FONTID_MAX)
return 0;
return (LRESULT)dat->fontInfo[wParam].colour;
@@ -390,7 +390,7 @@ LRESULT fnProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPAR break;
case CLM_SETFONT:
- if (HIWORD(lParam) < 0 || HIWORD(lParam) > FONTID_MAX)
+ if (HIWORD(lParam) > FONTID_MAX)
return 0;
dat->fontInfo[HIWORD(lParam)].hFont = (HFONT) wParam;
@@ -457,7 +457,7 @@ LRESULT fnProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPAR break;
case CLM_SETTEXTCOLOR:
- if (wParam < 0 || wParam > FONTID_MAX)
+ if (wParam > FONTID_MAX)
break;
dat->fontInfo[wParam].colour = lParam;
break;
|