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
a5107da4
Commit
a5107da4
authored
Oct 26, 2009
by
André Hentschel
Committed by
Alexandre Julliard
Oct 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz: Ignore apps without title in the list.
parent
da86e727
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
appwiz.c
dlls/appwiz.cpl/appwiz.c
+4
-4
No files found.
dlls/appwiz.cpl/appwiz.c
View file @
a5107da4
...
...
@@ -340,13 +340,15 @@ end:
*/
static
void
AddApplicationsToList
(
HWND
hWnd
,
HIMAGELIST
hList
)
{
APPINFO
*
iter
=
AppInfo
;
APPINFO
*
iter
;
LVITEMW
lvItem
;
HICON
hIcon
;
int
index
;
while
(
iter
)
for
(
iter
=
AppInfo
;
iter
;
iter
=
iter
->
next
)
{
if
(
!
iter
->
title
[
0
])
continue
;
/* get the icon */
index
=
0
;
...
...
@@ -371,8 +373,6 @@ static void AddApplicationsToList(HWND hWnd, HIMAGELIST hList)
/* now add the subitems (columns) */
ListView_SetItemTextW
(
hWnd
,
index
,
1
,
iter
->
publisher
);
ListView_SetItemTextW
(
hWnd
,
index
,
2
,
iter
->
version
);
iter
=
iter
->
next
;
}
}
...
...
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