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
4d1d5fd3
Commit
4d1d5fd3
authored
Aug 11, 2003
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Accept SIZE_MAXIMIZED as one of statuses of MDI windows.
parent
5d8ffdcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
status.c
dlls/comctl32/status.c
+6
-4
No files found.
dlls/comctl32/status.c
View file @
4d1d5fd3
...
...
@@ -884,7 +884,7 @@ STATUSBAR_WMCreate (HWND hwnd, LPCREATESTRUCTA lpCreate)
if
(
GetWindowLongW
(
lpCreate
->
hwndParent
,
GWL_EXSTYLE
)
&
WS_EX_MANAGED
)
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
dwStyle
&
~
SBARS_SIZEGRIP
);
if
((
hdc
=
GetDC
(
0
)))
{
if
((
hdc
=
GetDC
(
hwnd
)))
{
TEXTMETRICW
tm
;
HFONT
hOldFont
;
...
...
@@ -892,7 +892,7 @@ STATUSBAR_WMCreate (HWND hwnd, LPCREATESTRUCTA lpCreate)
GetTextMetricsW
(
hdc
,
&
tm
);
textHeight
=
tm
.
tmHeight
;
SelectObject
(
hdc
,
hOldFont
);
ReleaseDC
(
0
,
hdc
);
ReleaseDC
(
hwnd
,
hdc
);
}
TRACE
(
" textHeight=%d
\n
"
,
textHeight
);
...
...
@@ -1059,10 +1059,12 @@ STATUSBAR_WMSize (STATUSWINDOWINFO *infoPtr, WORD flags)
/* Need to resize width to match parent */
TRACE
(
"flags %04x
\n
"
,
flags
);
if
(
flags
!=
SIZE_RESTORED
)
{
WARN
(
"flags MUST be SIZE_RESTORED
\n
"
);
if
(
flags
!=
SIZE_RESTORED
&&
flags
!=
SIZE_MAXIMIZED
)
{
WARN
(
"flags MUST be SIZE_RESTORED or SIZE_MAXIMIZED
\n
"
);
return
FALSE
;
}
if
(
GetWindowLongW
(
infoPtr
->
Self
,
GWL_STYLE
)
&
CCS_NORESIZE
)
return
FALSE
;
/* width and height don't apply */
...
...
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