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
a5277fb5
Commit
a5277fb5
authored
Feb 03, 2007
by
Peter Oberndorfer
Committed by
Alexandre Julliard
Feb 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Honor msidbControlAttributesSorted attribute for list box.
parent
24dbdf8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
dialog.c
dlls/msi/dialog.c
+6
-2
No files found.
dlls/msi/dialog.c
View file @
a5277fb5
...
...
@@ -2168,14 +2168,18 @@ static UINT msi_dialog_list_box( msi_dialog *dialog, MSIRECORD *rec )
{
struct
msi_listbox_info
*
info
;
msi_control
*
control
;
DWORD
style
;
DWORD
attributes
,
style
;
LPCWSTR
prop
;
info
=
msi_alloc
(
sizeof
*
info
);
if
(
!
info
)
return
ERROR_FUNCTION_FAILED
;
style
=
WS_TABSTOP
|
WS_GROUP
|
WS_CHILD
|
LBS_STANDARD
;
style
=
WS_TABSTOP
|
WS_GROUP
|
WS_CHILD
|
LBS_NOTIFY
|
WS_VSCROLL
|
WS_BORDER
;
attributes
=
MSI_RecordGetInteger
(
rec
,
8
);
if
(
~
attributes
&
msidbControlAttributesSorted
)
style
|=
LBS_SORT
;
control
=
msi_dialog_add_control
(
dialog
,
rec
,
WC_LISTBOXW
,
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