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
f222582a
Commit
f222582a
authored
Dec 19, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't add text to the scrollable text control twice.
parent
56aa5d8a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dialog.c
dlls/msi/dialog.c
+3
-2
No files found.
dlls/msi/dialog.c
View file @
f222582a
...
...
@@ -783,12 +783,13 @@ static msi_control *msi_dialog_add_control( msi_dialog *dialog,
MSIRECORD
*
rec
,
LPCWSTR
szCls
,
DWORD
style
)
{
DWORD
attributes
;
LPCWSTR
text
,
nam
e
;
const
WCHAR
*
text
=
NULL
,
*
name
,
*
control_typ
e
;
DWORD
exstyle
=
0
;
name
=
MSI_RecordGetString
(
rec
,
2
);
control_type
=
MSI_RecordGetString
(
rec
,
3
);
attributes
=
MSI_RecordGetInteger
(
rec
,
8
);
text
=
MSI_RecordGetString
(
rec
,
10
);
if
(
strcmpW
(
control_type
,
szScrollableText
))
text
=
MSI_RecordGetString
(
rec
,
10
);
TRACE
(
"%s, %s, %08x, %s, %08x
\n
"
,
debugstr_w
(
szCls
),
debugstr_w
(
name
),
attributes
,
debugstr_w
(
text
),
style
);
...
...
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