summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-02 23:50:34 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-06 16:38:25 +0100
commit3ccdc75df65d3cc31006ed4c4c09bc8db9087563 (patch)
treed00ce65b944626f327bd102895a2b0892c90632e /src
parent7381bf60f29658ee2093630847cdba0272de22ff (diff)
downloadmsitools-3ccdc75df65d3cc31006ed4c4c09bc8db9087563.tar.gz
msitools-3ccdc75df65d3cc31006ed4c4c09bc8db9087563.tar.xz
msitools-3ccdc75df65d3cc31006ed4c4c09bc8db9087563.zip
Add braces around UUID in tables
Diffstat (limited to 'src')
-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 {