From 18a85caa3cff0c70b718fb23dd60b802f1a0d4c4 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Tue, 23 Mar 2010 11:47:19 +0100 Subject: [PATCH] msi: Update the UI in the UnpublishFeatures action. --- dlls/msi/action.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 028b4f0e362..a03b179e4ed 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -4373,6 +4373,7 @@ static UINT msi_unpublish_feature(MSIPACKAGE *package, MSIFEATURE *feature) { UINT r; HKEY hkey; + MSIRECORD *uirow; TRACE("unpublishing feature %s\n", debugstr_w(feature->Feature)); @@ -4392,6 +4393,11 @@ static UINT msi_unpublish_feature(MSIPACKAGE *package, MSIFEATURE *feature) RegCloseKey(hkey); } + uirow = MSI_CreateRecord( 1 ); + MSI_RecordSetStringW( uirow, 1, feature->Feature ); + ui_actiondata( package, szUnpublishFeatures, uirow ); + msiobj_release( &uirow->hdr ); + return ERROR_SUCCESS; }