diff options
author | lukefromdc <[email protected]> | 2016-10-08 16:00:16 -0400 |
---|---|---|
committer | monsta <[email protected]> | 2017-01-22 12:49:40 +0300 |
commit | e3d3a9a989d36f3e646adf1cc5125af831ea28f2 (patch) | |
tree | 9b9649439d10ea1264ea0513e854fd19567b994c /libcaja-private/caja-directory.c | |
parent | 6b020640202f9e14af14845e54b8f3a74e941bf0 (diff) | |
download | caja-e3d3a9a989d36f3e646adf1cc5125af831ea28f2.tar.bz2 caja-e3d3a9a989d36f3e646adf1cc5125af831ea28f2.tar.xz |
Fix hashtable warnings on close
As in Nautilus, use g_hash_table_new rather than eel_g_hash_table_new_free_at_exit
Diffstat (limited to 'libcaja-private/caja-directory.c')
-rw-r--r-- | libcaja-private/caja-directory.c | 7 |
1 files changed, 2 insertions, 5 deletions
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 (); } |