diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-10 20:18:48 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-10 20:18:48 +0000 |
commit | 22377c8be5548d37deee4258b315c2e5f1b42bca (patch) | |
tree | 359febdaa0dbc9efaf6384259ce43a3fcb03fadb /src/modules/clist/clistmod.cpp | |
parent | 2e57f9842aa2da2985bfc36bcc85d1124f2dbb3f (diff) |
- fixed crazy drawing bug in nicer;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2281 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist/clistmod.cpp')
-rw-r--r-- | src/modules/clist/clistmod.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/clist/clistmod.cpp b/src/modules/clist/clistmod.cpp index 2bc691ca94..60ce86d46d 100644 --- a/src/modules/clist/clistmod.cpp +++ b/src/modules/clist/clistmod.cpp @@ -438,7 +438,7 @@ extern int sortByStatus, sortByProto; static INT_PTR CompareContacts(WPARAM wParam, LPARAM lParam)
{
- HANDLE a = (HANDLE) wParam, b = (HANDLE) lParam;
+ HANDLE a = (HANDLE)wParam, b = (HANDLE) lParam;
TCHAR namea[128], *nameb;
int statusa, statusb;
char *szProto1, *szProto2;
|