summaryrefslogtreecommitdiffstats
path: root/src/builder.vala
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-06 01:59:56 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-06 16:38:26 +0100
commit17b646c138f9b5dad94cba0b67faa4ce99c85b8c (patch)
tree16b4658001c40b7b0cba295dc4acd7f948a1e616 /src/builder.vala
parent09460231052736715e666ee0f230379fb7fc69cd (diff)
downloadmsitools-17b646c138f9b5dad94cba0b67faa4ce99c85b8c.tar.gz
msitools-17b646c138f9b5dad94cba0b67faa4ce99c85b8c.tar.xz
msitools-17b646c138f9b5dad94cba0b67faa4ce99c85b8c.zip
Fix some wrong values
Diffstat (limited to 'src/builder.vala')
-rw-r--r--src/builder.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/builder.vala b/src/builder.vala
index a7a5cf0..5f92d89 100644
--- a/src/builder.vala
+++ b/src/builder.vala
@@ -60,7 +60,7 @@ namespace Wixl {
add ("UnpublishFeatures", 1800);
if (db.table_registry.records.length () > 0) {
add ("RemoveRegistryValues", 2600);
- add ("WriteRegistryValues", 2600);
+ add ("WriteRegistryValues", 5000);
}
if (db.table_shortcut.records.length () > 0)
add ("RemoveShortcuts", 3200);
@@ -140,7 +140,7 @@ namespace Wixl {
db.info.set_author (product.Manufacturer);
db.table_property.add ("Manufacturer", product.Manufacturer);
- db.table_property.add ("ProductLanguage", product.Codepage);
+ db.table_property.add ("ProductLanguage", product.Language);
db.table_property.add ("ProductCode", add_braces (product.Id));
db.table_property.add ("ProductName", product.Name);
db.table_property.add ("ProductVersion", product.Version);