summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/wixl.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixl.vala b/src/wixl.vala
index 9420955..ea85518 100644
--- a/src/wixl.vala
+++ b/src/wixl.vala
@@ -617,10 +617,10 @@ namespace Wixl {
db.table_property.add ("Manufacturer", product.Manufacturer);
db.table_property.add ("ProductLanguage", product.Codepage);
- db.table_property.add ("ProductCode", product.Id);
+ db.table_property.add ("ProductCode", add_braces (product.Id));
db.table_property.add ("ProductName", product.Name);
db.table_property.add ("ProductVersion", product.Version);
- db.table_property.add ("UpgradeCode", product.UpgradeCode);
+ db.table_property.add ("UpgradeCode", add_braces (product.UpgradeCode));
}
public override void visit_package (WixPackage package) throws GLib.Error {