diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-30 12:03:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-30 12:03:09 +0000 |
commit | dafcac872a4631fef8d3ba4c8e895e4316b88814 (patch) | |
tree | 20596125354c65d1e6858d249ab17abb1dbb6e56 /plugins/Clist_modern/src/modern_clui.cpp | |
parent | 94e565e4774327b30af368e7aa3bfc0c7cace5b9 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@1274 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clui.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index fe27bc2a34..f40beebf46 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -1624,8 +1624,8 @@ int CLUI_SizingOnBorder(POINT pt, int PerformSize) else if ( pt.y >= r.top && pt.y <= r.top + SIZING_MARGIN ) sizeOnBorderFlag = SCF_TOP;
}
- if ( pt.x <= r.right && pt.x >= r.right - SIZING_MARGIN ) sizeOnBorderFlag += SCF_RIGHT;
- else if ( pt.x >= r.left && pt.x <= r.left + SIZING_MARGIN ) sizeOnBorderFlag += SCF_LEFT;
+ if ( pt.x <= r.right && pt.x >= r.right - SIZING_MARGIN ) sizeOnBorderFlag += SCF_RIGHT;
+ else if ( pt.x >= r.left && pt.x <= r.left + SIZING_MARGIN ) sizeOnBorderFlag += SCF_LEFT;
if ( !(pt.x >= r.left && pt.x <= r.right && pt.y >= r.top && pt.y <= r.bottom)) sizeOnBorderFlag = SCF_NONE;
|