]> spindle.queued.net Git - midori/commitdiff
Use g_hash_table_lookup() instead of newer g_hash_table_contains()
authorEnrico Tröger <enrico.troeger@uvena.de>
Fri, 27 Jul 2012 13:55:17 +0000 (15:55 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sat, 28 Jul 2012 08:46:04 +0000 (10:46 +0200)
This retains compability with GLib 2.30.

midori/main.c

index 46d2f30e8101a71b6decae38d263d671cf0e3d8b..57ee6f3b043bbe9da7b22703ab00db49659701fe 100644 (file)
@@ -1267,7 +1267,7 @@ midori_load_module (MidoriApp*   app,
        Skip any modules that were loaded before. */
     if (modules == NULL)
         modules = g_hash_table_new (g_direct_hash, g_direct_equal);
-    if (g_hash_table_contains (modules, module))
+    if (g_hash_table_lookup (modules, module))
         return;
     g_hash_table_insert (modules, module, g_strdup (filename));