msi: Display the product code in the FindRelatedProducts action.

This commit is contained in:
Hans Leidekker 2010-03-05 12:25:31 +01:00 committed by Alexandre Julliard
parent 2666294f64
commit bb9451adae

View file

@ -182,9 +182,10 @@ static UINT ITERATE_FindRelatedProducts(MSIRECORD *rec, LPVOID param)
continue;
}
action_property = MSI_RecordGetString(rec,7);
append_productcode(package,action_property,productid);
ui_actiondata(package,szFindRelatedProducts,uirow);
action_property = MSI_RecordGetString(rec, 7);
append_productcode(package, action_property, productid);
MSI_RecordSetStringW(uirow, 1, productid);
ui_actiondata(package, szFindRelatedProducts, uirow);
}
index ++;
}