summaryrefslogtreecommitdiff
path: root/gio/gmountoperation.c
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2011-07-19 14:18:10 -0300
committerJohan Dahlin <jdahlin@litl.com>2011-07-19 14:38:34 -0300
commitec98953e42a20061427b20681d1e31501907e2fa (patch)
treef14a61fd99168104a4ed798302dd5f5078eb4dbe /gio/gmountoperation.c
parentfa2861e3b6109e002b68aa105b5ecbcba88724c1 (diff)
Pass in NULL instead of g_cclosure_marshal_generic
NULL is now a shortcut for g_cclosure_marshal_generic, so avoid referencing it directly. https://bugzilla.gnome.org/show_bug.cgi?id=654917
Diffstat (limited to 'gio/gmountoperation.c')
-rw-r--r--gio/gmountoperation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/gmountoperation.c b/gio/gmountoperation.c
index ef6486b96..525943a68 100644
--- a/gio/gmountoperation.c
+++ b/gio/gmountoperation.c
@@ -275,7 +275,7 @@ g_mount_operation_class_init (GMountOperationClass *klass)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GMountOperationClass, ask_password),
NULL, NULL,
- g_cclosure_marshal_generic,
+ NULL,
G_TYPE_NONE, 4,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_ASK_PASSWORD_FLAGS);
@@ -298,7 +298,7 @@ g_mount_operation_class_init (GMountOperationClass *klass)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GMountOperationClass, ask_question),
NULL, NULL,
- g_cclosure_marshal_generic,
+ NULL,
G_TYPE_NONE, 2,
G_TYPE_STRING, G_TYPE_STRV);
@@ -367,7 +367,7 @@ g_mount_operation_class_init (GMountOperationClass *klass)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GMountOperationClass, show_processes),
NULL, NULL,
- g_cclosure_marshal_generic,
+ NULL,
G_TYPE_NONE, 3,
G_TYPE_STRING, G_TYPE_ARRAY, G_TYPE_STRV);