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
f7cda904
Commit
f7cda904
authored
Jul 16, 2008
by
Mikołaj Zalewski
Committed by
Alexandre Julliard
Jul 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: statusbar: Don't issue a WM_PAINT during a WM_CREATE.
parent
d2479536
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
status.c
dlls/comctl32/status.c
+2
-4
No files found.
dlls/comctl32/status.c
View file @
f7cda904
...
@@ -934,15 +934,13 @@ STATUSBAR_WMCreate (HWND hwnd, const CREATESTRUCTA *lpCreate)
...
@@ -934,15 +934,13 @@ STATUSBAR_WMCreate (HWND hwnd, const CREATESTRUCTA *lpCreate)
STATUSBAR_NotifyFormat
(
infoPtr
,
infoPtr
->
Notify
,
NF_REQUERY
);
STATUSBAR_NotifyFormat
(
infoPtr
,
infoPtr
->
Notify
,
NF_REQUERY
);
GetClientRect
(
hwnd
,
&
rect
);
InvalidateRect
(
hwnd
,
&
rect
,
0
);
UpdateWindow
(
hwnd
);
ZeroMemory
(
&
nclm
,
sizeof
(
nclm
));
ZeroMemory
(
&
nclm
,
sizeof
(
nclm
));
nclm
.
cbSize
=
sizeof
(
nclm
);
nclm
.
cbSize
=
sizeof
(
nclm
);
SystemParametersInfoW
(
SPI_GETNONCLIENTMETRICS
,
nclm
.
cbSize
,
&
nclm
,
0
);
SystemParametersInfoW
(
SPI_GETNONCLIENTMETRICS
,
nclm
.
cbSize
,
&
nclm
,
0
);
infoPtr
->
hDefaultFont
=
CreateFontIndirectW
(
&
nclm
.
lfStatusFont
);
infoPtr
->
hDefaultFont
=
CreateFontIndirectW
(
&
nclm
.
lfStatusFont
);
GetClientRect
(
hwnd
,
&
rect
);
/* initialize simple case */
/* initialize simple case */
infoPtr
->
part0
.
bound
=
rect
;
infoPtr
->
part0
.
bound
=
rect
;
infoPtr
->
part0
.
text
=
0
;
infoPtr
->
part0
.
text
=
0
;
...
...
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