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
9d899129
Commit
9d899129
authored
Nov 08, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Nov 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Only add text to the scroll control if text is provided.
parent
df51cf5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
dialog.c
dlls/msi/dialog.c
+4
-1
No files found.
dlls/msi/dialog.c
View file @
9d899129
...
...
@@ -920,6 +920,7 @@ static UINT msi_dialog_scrolltext_control( msi_dialog *dialog, MSIRECORD *rec )
struct
msi_scrolltext_info
*
info
;
msi_control
*
control
;
HMODULE
hRichedit
;
LPCWSTR
text
;
DWORD
style
;
info
=
msi_alloc
(
sizeof
*
info
);
...
...
@@ -949,7 +950,9 @@ static UINT msi_dialog_scrolltext_control( msi_dialog *dialog, MSIRECORD *rec )
SetPropW
(
control
->
hwnd
,
szButtonData
,
info
);
/* add the text into the richedit */
msi_scrolltext_add_text
(
control
,
MSI_RecordGetString
(
rec
,
10
)
);
text
=
MSI_RecordGetString
(
rec
,
10
);
if
(
text
)
msi_scrolltext_add_text
(
control
,
text
);
return
ERROR_SUCCESS
;
}
...
...
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