msi: Update the UI in the UnpublishFeatures action.
This commit is contained in:
parent
706c4f77e8
commit
18a85caa3c
|
@ -4373,6 +4373,7 @@ static UINT msi_unpublish_feature(MSIPACKAGE *package, MSIFEATURE *feature)
|
||||||
{
|
{
|
||||||
UINT r;
|
UINT r;
|
||||||
HKEY hkey;
|
HKEY hkey;
|
||||||
|
MSIRECORD *uirow;
|
||||||
|
|
||||||
TRACE("unpublishing feature %s\n", debugstr_w(feature->Feature));
|
TRACE("unpublishing feature %s\n", debugstr_w(feature->Feature));
|
||||||
|
|
||||||
|
@ -4392,6 +4393,11 @@ static UINT msi_unpublish_feature(MSIPACKAGE *package, MSIFEATURE *feature)
|
||||||
RegCloseKey(hkey);
|
RegCloseKey(hkey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uirow = MSI_CreateRecord( 1 );
|
||||||
|
MSI_RecordSetStringW( uirow, 1, feature->Feature );
|
||||||
|
ui_actiondata( package, szUnpublishFeatures, uirow );
|
||||||
|
msiobj_release( &uirow->hdr );
|
||||||
|
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue