diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-15 17:29:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-15 17:29:58 +0000 |
commit | e311fc5f472c169ec0f25729fa5070fdd4a6c805 (patch) | |
tree | b63a187d53fc6a061422a851ae3dbd8123be909a /plugins/Clist_modern/src/modern_cluiframes.cpp | |
parent | 6cd8cc0b3461df48269fac24aad474154fb040b2 (diff) |
clist_modern: code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2318 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_cluiframes.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_cluiframes.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_cluiframes.cpp b/plugins/Clist_modern/src/modern_cluiframes.cpp index 942be6c26e..de2b26bf7e 100644 --- a/plugins/Clist_modern/src/modern_cluiframes.cpp +++ b/plugins/Clist_modern/src/modern_cluiframes.cpp @@ -117,7 +117,7 @@ static int sortfunc(const void *a,const void *b) if (sd1->order < sd2->order){return(-1);};
return (0);
};
-int CLUIFrames_OnMoving( HWND hwnd, RECT * r)
+int CLUIFrames_OnMoving( HWND hwnd, RECT *r)
{
int i;
g_CluiData.mutexPreventDockMoving = 0;
@@ -2635,7 +2635,7 @@ int CLUIFramesOnClistResize(WPARAM wParam,LPARAM lParam) {
RECT oldRect;
POINT pt;
- RECT * newRect = (RECT *)lParam;
+ RECT *newRect = (RECT *)lParam;
int dl,dt,dr,db;
GetWindowRect((HWND)wParam,&oldRect);
pt.x = nRect.left;
@@ -2860,7 +2860,7 @@ void DrawBackGround(HWND hwnd,HDC mhdc, HBITMAP hBmpBackground, COLORREF bkColou }
-int DrawTitleBar(HDC hdcMem2,RECT * rect,int Frameid)
+int DrawTitleBar(HDC hdcMem2,RECT *rect,int Frameid)
{
int pos;
BOOL bThemed = FALSE;
|