Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9badfb50
Commit
9badfb50
authored
Feb 28, 2007
by
Felix Nawothnig
Committed by
Alexandre Julliard
Feb 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Update header window in listview WM_PAINT handler.
parent
f671aed5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
listview.c
dlls/comctl32/listview.c
+3
-0
listview.c
dlls/comctl32/tests/listview.c
+1
-1
No files found.
dlls/comctl32/listview.c
View file @
9badfb50
...
...
@@ -8798,6 +8798,9 @@ static LRESULT LISTVIEW_Paint(LISTVIEW_INFO *infoPtr, HDC hdc)
LISTVIEW_Arrange
(
infoPtr
,
LVA_DEFAULT
);
LISTVIEW_UpdateScroll
(
infoPtr
);
}
UpdateWindow
(
infoPtr
->
hwndHeader
);
if
(
hdc
)
LISTVIEW_Refresh
(
infoPtr
,
hdc
);
else
...
...
dlls/comctl32/tests/listview.c
View file @
9badfb50
...
...
@@ -573,7 +573,7 @@ static void test_redraw(void)
trace
(
"invalidate & update
\n
"
);
InvalidateRect
(
hwnd
,
NULL
,
TRUE
);
UpdateWindow
(
hwnd
);
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
redraw_listview_seq
,
"redraw listview"
,
TRU
E
);
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
redraw_listview_seq
,
"redraw listview"
,
FALS
E
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
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