From: Hans Leidekker Date: Fri, 5 Mar 2010 11:25:31 +0000 (+0100) Subject: msi: Display the product code in the FindRelatedProducts action. X-Git-Tag: wine-1.1.40~17 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=bb9451adaef98108ec13b2fae116ee8357554ad1;p=wine%2Feterwine.git msi: Display the product code in the FindRelatedProducts action. --- diff --git a/dlls/msi/upgrade.c b/dlls/msi/upgrade.c index 21b677d553..a440070a4d 100644 --- a/dlls/msi/upgrade.c +++ b/dlls/msi/upgrade.c @@ -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 ++; }