summaryrefslogtreecommitdiffstats
path: root/src/wix.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/wix.vala')
-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) {