msi: Update the UI in the UnpublishFeatures action.
diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 028b4f0..a03b179 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -4373,6 +4373,7 @@
{
UINT r;
HKEY hkey;
+ MSIRECORD *uirow;
TRACE("unpublishing feature %s\n", debugstr_w(feature->Feature));
@@ -4392,6 +4393,11 @@
RegCloseKey(hkey);
}
+ uirow = MSI_CreateRecord( 1 );
+ MSI_RecordSetStringW( uirow, 1, feature->Feature );
+ ui_actiondata( package, szUnpublishFeatures, uirow );
+ msiobj_release( &uirow->hdr );
+
return ERROR_SUCCESS;
}