From 43072f6d85baf2de3919cdd7fc2dd2062947843f Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Mon, 7 Jan 2013 19:01:30 +0100 Subject: Fix invalid child_type hashtable kind... --- src/wix.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 child_types = null; // FIXME: would be nice if vala always initialize class member to null class construct { - child_types = new HashTable (int_hash, int_equal); + child_types = new HashTable (str_hash, str_equal); } public class void add_child_types (HashTable table, Type[] child_types) { -- cgit