From 6e142d59d7408e53ab1e579dba62517b6f59e307 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Sat, 8 Oct 2016 16:00:16 -0400 Subject: Fix hashtable warnings on close As in Nautilus, use g_hash_table_new rather than eel_g_hash_table_new_free_at_exit --- libcaja-private/caja-directory.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libcaja-private/caja-directory.c') diff --git a/libcaja-private/caja-directory.c b/libcaja-private/caja-directory.c index fcadc2c8..e9292e3b 100644 --- a/libcaja-private/caja-directory.c +++ b/libcaja-private/caja-directory.c @@ -357,11 +357,8 @@ caja_directory_get_internal (GFile *location, gboolean create) CajaDirectory *directory; /* Create the hash table first time through. */ - if (directories == NULL) - { - directories = eel_g_hash_table_new_free_at_exit - (g_file_hash, (GCompareFunc)g_file_equal, "caja-directory.c: directories"); - + if (directories == NULL) { + directories = g_hash_table_new (g_file_hash, (GCompareFunc) g_file_equal); add_preferences_callbacks (); } -- cgit v1.2.1