From: Philip Chimento Date: Sun, 2 May 2010 19:57:29 +0000 (+0000) Subject: Fixed hyperlink bug, #46 X-Git-Url: https://git.stderr.nl/gitweb?p=rodin%2Fchimara.git;a=commitdiff_plain;h=510af770653094e2740bb693e269ae04864651f7 Fixed hyperlink bug, #46 git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@256 ddfedd41-794f-dd11-ae45-00112f111e67 --- diff --git a/libchimara/window.c b/libchimara/window.c index 84b6fd9..011b5fb 100644 --- a/libchimara/window.c +++ b/libchimara/window.c @@ -37,7 +37,7 @@ window_new_common(glui32 rock) win->buffer = g_string_sized_new(1024); /* Initialise hyperlink table */ - win->hyperlinks = g_hash_table_new_full(g_int_hash, g_direct_equal, g_free, g_object_unref); + win->hyperlinks = g_hash_table_new_full(g_int_hash, g_int_equal, g_free, g_free); return win; }