From e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 27 Sep 2007 20:08:55 +0000 Subject: Fix for bug #461195 from Hiroyuki Ikezoe. Use GObject's marshalers whenever possible. svn path=/trunk/; revision=34324 --- shell/e-shell-folder-title-bar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shell/e-shell-folder-title-bar.c') diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c index 16aee674c8..24bf3a58e8 100644 --- a/shell/e-shell-folder-title-bar.c +++ b/shell/e-shell-folder-title-bar.c @@ -417,7 +417,7 @@ e_shell_folder_title_bar_class_init (EShellFolderTitleBarClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EShellFolderTitleBarClass, title_toggled), NULL, NULL, - e_shell_marshal_NONE__BOOL, + g_cclosure_marshal_VOID__BOOLEAN, G_TYPE_NONE, 1, G_TYPE_BOOLEAN); @@ -427,7 +427,7 @@ e_shell_folder_title_bar_class_init (EShellFolderTitleBarClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EShellFolderTitleBarClass, back_clicked), NULL, NULL, - e_shell_marshal_NONE__NONE, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); signals[FORWARD_CLICKED] @@ -436,7 +436,7 @@ e_shell_folder_title_bar_class_init (EShellFolderTitleBarClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EShellFolderTitleBarClass, forward_clicked), NULL, NULL, - e_shell_marshal_NONE__NONE, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } -- cgit