msi: Update the UI in the UnpublishFeatures action.

This commit is contained in:
Hans Leidekker 2010-03-23 11:47:19 +01:00 committed by Alexandre Julliard
parent 706c4f77e8
commit 18a85caa3c
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}