Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a4df2901
Commit
a4df2901
authored
Apr 23, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Repaint comboex control upon WM_SETREDRAW, like other common controls do.
parent
0a42190c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
comboex.c
dlls/comctl32/comboex.c
+11
-0
No files found.
dlls/comctl32/comboex.c
View file @
a4df2901
...
...
@@ -1669,6 +1669,14 @@ static LRESULT COMBOEX_Size (COMBOEX_INFO *infoPtr, INT width, INT height)
}
static
LRESULT
COMBOEX_SetRedraw
(
COMBOEX_INFO
*
infoPtr
,
WPARAM
wParam
,
LPARAM
lParam
)
{
LRESULT
ret
=
DefWindowProcW
(
infoPtr
->
hwndSelf
,
WM_SETREDRAW
,
wParam
,
lParam
);
if
(
wParam
)
RedrawWindow
(
infoPtr
->
hwndSelf
,
NULL
,
0
,
RDW_INVALIDATE
|
RDW_ERASE
|
RDW_ALLCHILDREN
);
return
ret
;
}
static
LRESULT
COMBOEX_WindowPosChanging
(
COMBOEX_INFO
*
infoPtr
,
WINDOWPOS
*
wp
)
{
RECT
cbx_wrect
,
cbx_crect
,
cb_wrect
;
...
...
@@ -2302,6 +2310,9 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case
WM_SIZE
:
return
COMBOEX_Size
(
infoPtr
,
LOWORD
(
lParam
),
HIWORD
(
lParam
));
case
WM_SETREDRAW
:
return
COMBOEX_SetRedraw
(
infoPtr
,
wParam
,
lParam
);
case
WM_WINDOWPOSCHANGING
:
return
COMBOEX_WindowPosChanging
(
infoPtr
,
(
WINDOWPOS
*
)
lParam
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment