summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-07 19:01:30 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-07 19:01:30 +0100
commit43072f6d85baf2de3919cdd7fc2dd2062947843f (patch)
tree5265e734b937b1c7383894ebc6781f691eb579d9
parentae1ef1a6371b63c456372b5488352026aa1ff57c (diff)
downloadmsitools-43072f6d85baf2de3919cdd7fc2dd2062947843f.tar.gz
msitools-43072f6d85baf2de3919cdd7fc2dd2062947843f.tar.xz
msitools-43072f6d85baf2de3919cdd7fc2dd2062947843f.zip
Fix invalid child_type hashtable kind...
-rw-r--r--src/wix.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wix.vala b/src/wix.vala
index 6b6bed8..2c824f8 100644
--- a/src/wix.vala
+++ b/src/wix.vala
@@ -30,7 +30,7 @@ namespace Wixl {
protected class HashTable<string, Type> child_types = null; // FIXME: would be nice if vala always initialize class member to null
class construct {
- child_types = new HashTable<string, Type> (int_hash, int_equal);
+ child_types = new HashTable<string, Type> (str_hash, str_equal);
}
public class void add_child_types (HashTable<string, Type> table, Type[] child_types) {