Commit bb9451ad authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Display the product code in the FindRelatedProducts action.

parent 2666294f
......@@ -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 ++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment