GFUNC_COMPAT_CAST also for dialog-common.c
[pspp] / src / ui / gui / dialog-common.c
index 1b29c4a3bedbc7a02ffa4754ada9121e82af85c4..cdc0758cb3e77ca4f115aa67c7a6699331476d66 100644 (file)
@@ -112,7 +112,7 @@ homogeneous_types (GtkWidget *source, GtkWidget *dest)
       have_type = true;
     }
 
-  g_list_foreach (list, (GFunc) (void (*)(void)) gtk_tree_path_free, NULL);
+  g_list_foreach (list, GFUNC_COMPAT_CAST (gtk_tree_path_free), NULL);
   g_list_free (list);
 
   if (retval == FALSE)
@@ -179,7 +179,7 @@ numeric_only (GtkWidget *source, GtkWidget *dest)
        }
     }
 
-  g_list_foreach (list, (GFunc) (void (*)(void)) gtk_tree_path_free, NULL);
+  g_list_foreach (list, GFUNC_COMPAT_CAST (gtk_tree_path_free), NULL);
   g_list_free (list);
 
   return retval;