mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
comctl32: Avoid using the comma operator.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
244c15fe7b
commit
e4f66b0483
2 changed files with 3 additions and 3 deletions
|
@ -1002,7 +1002,7 @@ ImageList_InternalDragDraw (HDC hdc, INT x, INT y)
|
|||
imldp.cbSize = sizeof(imldp);
|
||||
imldp.himl = InternalDrag.himl;
|
||||
imldp.i = 0;
|
||||
imldp.hdcDst = hdc,
|
||||
imldp.hdcDst = hdc;
|
||||
imldp.x = x;
|
||||
imldp.y = y;
|
||||
imldp.rgbBk = CLR_DEFAULT;
|
||||
|
@ -1236,7 +1236,7 @@ ImageList_DrawEx (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y,
|
|||
imldp.cbSize = sizeof(imldp);
|
||||
imldp.himl = himl;
|
||||
imldp.i = i;
|
||||
imldp.hdcDst = hdc,
|
||||
imldp.hdcDst = hdc;
|
||||
imldp.x = x;
|
||||
imldp.y = y;
|
||||
imldp.cx = dx;
|
||||
|
|
|
@ -1173,7 +1173,7 @@ static void LISTBOX_NCPaint( LB_DESCR *descr, HRGN region )
|
|||
if (!theme || !(exstyle & WS_EX_CLIENTEDGE))
|
||||
return;
|
||||
|
||||
cxEdge = GetSystemMetrics(SM_CXEDGE),
|
||||
cxEdge = GetSystemMetrics(SM_CXEDGE);
|
||||
cyEdge = GetSystemMetrics(SM_CYEDGE);
|
||||
|
||||
GetWindowRect(descr->self, &r);
|
||||
|
|
Loading…
Reference in a new issue