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
a3a2eaea
Commit
a3a2eaea
authored
Nov 29, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Update the UI in one place only in ACTION_ProcessComponents.
parent
1770c912
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
action.c
dlls/msi/action.c
+10
-16
No files found.
dlls/msi/action.c
View file @
a3a2eaea
...
...
@@ -2700,7 +2700,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
continue
;
squash_guid
(
comp
->
ComponentId
,
squished_cc
);
msi_free
(
comp
->
FullKeypath
);
comp
->
FullKeypath
=
resolve_keypath
(
package
,
comp
);
...
...
@@ -2738,14 +2738,6 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
}
RegCloseKey
(
hkey2
);
/* UI stuff */
uirow
=
MSI_CreateRecord
(
3
);
MSI_RecordSetStringW
(
uirow
,
1
,
package
->
ProductCode
);
MSI_RecordSetStringW
(
uirow
,
2
,
comp
->
ComponentId
);
MSI_RecordSetStringW
(
uirow
,
3
,
comp
->
FullKeypath
);
ui_actiondata
(
package
,
szProcessComponents
,
uirow
);
msiobj_release
(
&
uirow
->
hdr
);
}
else
if
(
ACTION_VerifyComponentForAction
(
comp
,
INSTALLSTATE_ABSENT
))
{
...
...
@@ -2763,14 +2755,16 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
if
(
res
==
ERROR_NO_MORE_ITEMS
)
RegDeleteKeyW
(
hkey
,
squished_cc
);
/* UI stuff */
uirow
=
MSI_CreateRecord
(
2
);
MSI_RecordSetStringW
(
uirow
,
1
,
package
->
ProductCode
);
MSI_RecordSetStringW
(
uirow
,
2
,
comp
->
ComponentId
);
ui_actiondata
(
package
,
szProcessComponents
,
uirow
);
msiobj_release
(
&
uirow
->
hdr
);
}
}
/* UI stuff */
uirow
=
MSI_CreateRecord
(
3
);
MSI_RecordSetStringW
(
uirow
,
1
,
package
->
ProductCode
);
MSI_RecordSetStringW
(
uirow
,
2
,
comp
->
ComponentId
);
MSI_RecordSetStringW
(
uirow
,
3
,
comp
->
FullKeypath
);
ui_actiondata
(
package
,
szProcessComponents
,
uirow
);
msiobj_release
(
&
uirow
->
hdr
);
}
RegCloseKey
(
hkey
);
return
rc
;
}
...
...
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