diff -Naur Thunar-1.0.1/docs/reference/thunarx/tmpl/thunarx-menu-provider.sgml Thunar-1.0.1.new/docs/reference/thunarx/tmpl/thunarx-menu-provider.sgml --- Thunar-1.0.1/docs/reference/thunarx/tmpl/thunarx-menu-provider.sgml 2009-04-18 20:49:24.000000000 +0530 +++ Thunar-1.0.1.new/docs/reference/thunarx/tmpl/thunarx-menu-provider.sgml 2009-06-13 12:38:16.000000000 +0530 @@ -74,7 +74,7 @@ GClosure *closure; action = gtk_action_new ("Hello::say-hello", "Say hello", "Say hello", NULL); - closure = g_cclosure_object_new_swap (G_CALLBACK (hello_activated), G_OBJECT (window)); + closure = g_cclosure_new_object_swap (G_CALLBACK (hello_activated), G_OBJECT (window)); g_signal_connect_closure (G_OBJECT (action), "activate", closure, TRUE); return g_list_append (NULL, action); diff -Naur Thunar-1.0.1/docs/reference/thunarx/tmpl/thunarx-preferences-provider.sgml Thunar-1.0.1.new/docs/reference/thunarx/tmpl/thunarx-preferences-provider.sgml --- Thunar-1.0.1/docs/reference/thunarx/tmpl/thunarx-preferences-provider.sgml 2009-04-18 20:49:24.000000000 +0530 +++ Thunar-1.0.1.new/docs/reference/thunarx/tmpl/thunarx-preferences-provider.sgml 2009-06-13 12:36:45.000000000 +0530 @@ -67,7 +67,7 @@ GClosure *closure; action = gtk_action_new ("Hello::say-hello", "Say hello", "Say hello", NULL); - closure = g_cclosure_object_new_swap (G_CALLBACK (hello_activated), G_OBJECT (window)); + closure = g_cclosure_new_object_swap (G_CALLBACK (hello_activated), G_OBJECT (window)); g_signal_connect_closure (G_OBJECT (action), "activate", closure, TRUE); return g_list_prepend (NULL, action);