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
f4eea10b
Commit
f4eea10b
authored
Dec 20, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Dec 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: The BS_GROUPBOX style should only be used if the HasBorder attribute is set.
parent
93df1675
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
dialog.c
dlls/msi/dialog.c
+8
-1
No files found.
dlls/msi/dialog.c
View file @
f4eea10b
...
...
@@ -1750,13 +1750,20 @@ static UINT msi_dialog_radiogroup_control( msi_dialog *dialog, MSIRECORD *rec )
radio_button_group_descr
group
;
MSIPACKAGE
*
package
=
dialog
->
package
;
WNDPROC
oldproc
;
DWORD
attr
,
style
=
WS_GROUP
;
prop
=
MSI_RecordGetString
(
rec
,
9
);
TRACE
(
"%p %p %s
\n
"
,
dialog
,
rec
,
debugstr_w
(
prop
));
attr
=
MSI_RecordGetInteger
(
rec
,
8
);
if
(
attr
&
msidbControlAttributesHasBorder
)
style
|=
BS_GROUPBOX
;
else
style
|=
BS_OWNERDRAW
;
/* Create parent group box to hold radio buttons */
control
=
msi_dialog_add_control
(
dialog
,
rec
,
szButton
,
BS_GROUPBOX
|
WS_GROUP
);
control
=
msi_dialog_add_control
(
dialog
,
rec
,
szButton
,
style
);
if
(
!
control
)
return
ERROR_FUNCTION_FAILED
;
...
...
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