From 023f677e887120b5b4ae159108f94dd1d39fd821 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Tue, 31 Jul 2012 15:52:54 +0200 Subject: gdbus: Remove debug prints --- common/gmountoperationdbus.c | 10 ---------- common/gmountsource.c | 8 -------- 2 files changed, 18 deletions(-) (limited to 'common') diff --git a/common/gmountoperationdbus.c b/common/gmountoperationdbus.c index 4c323467..10f1267a 100644 --- a/common/gmountoperationdbus.c +++ b/common/gmountoperationdbus.c @@ -103,8 +103,6 @@ handle_ask_password (GVfsDBusMountOperation *object, { GMountOperationDBus *op_dbus = data; - g_print ("gmountoperationdbus.c: handle_ask_password()\n"); - op_dbus->object = object; op_dbus->invocation = invocation; g_signal_connect (op_dbus->op, "reply", @@ -153,8 +151,6 @@ handle_ask_question (GVfsDBusMountOperation *object, { GMountOperationDBus *op_dbus = data; - g_print ("gmountoperationdbus.c: handle_ask_question()\n"); - op_dbus->object = object; op_dbus->invocation = invocation; g_signal_connect (op_dbus->op, @@ -206,8 +202,6 @@ handle_show_processes (GVfsDBusMountOperation *object, GPid pid; GVariantIter iter; - g_print ("gmountoperationdbus.c: handle_show_processes()\n"); - processes = g_array_new (FALSE, FALSE, sizeof (GPid)); g_variant_iter_init (&iter, arg_processes); while (g_variant_iter_loop (&iter, "i", &pid)) @@ -239,8 +233,6 @@ handle_show_unmount_progress (GVfsDBusMountOperation *object, gpointer data) { GMountOperationDBus *op_dbus = data; - - g_print ("gmountoperationdbus.c: handle_show_unmount_progress()\n"); g_signal_emit_by_name (op_dbus->op, "show-unmount-progress", arg_message_string, @@ -258,8 +250,6 @@ handle_aborted (GVfsDBusMountOperation *object, gpointer data) { GMountOperationDBus *op_dbus = data; - - g_print ("gmountoperationdbus.c: handle_aborted()\n"); /* also emit reply to make the all DBus ops return */ g_mount_operation_reply (op_dbus->op, G_MOUNT_OPERATION_UNHANDLED); diff --git a/common/gmountsource.c b/common/gmountsource.c index c21f5fc5..f75461cf 100644 --- a/common/gmountsource.c +++ b/common/gmountsource.c @@ -215,8 +215,6 @@ ask_password_reply (GVfsDBusMountOperation *proxy, result = G_SIMPLE_ASYNC_RESULT (user_data); handled = TRUE; - - g_print ("gmountsource.c: ask_password_reply()\n"); data = g_new0 (AskPasswordData, 1); g_simple_async_result_set_op_res_gpointer (result, data, ask_password_data_free); @@ -530,8 +528,6 @@ ask_question_reply (GVfsDBusMountOperation *proxy, result = G_SIMPLE_ASYNC_RESULT (user_data); handled = TRUE; - - g_print ("gmountsource.c: ask_question_reply()\n"); data = g_new0 (AskQuestionData, 1); g_simple_async_result_set_op_res_gpointer (result, data, g_free); @@ -737,8 +733,6 @@ show_processes_reply (GVfsDBusMountOperation *proxy, result = G_SIMPLE_ASYNC_RESULT (user_data); handled = TRUE; - g_print ("gmountsource.c: show_processes_reply()\n"); - data = g_new0 (ShowProcessesData, 1); g_simple_async_result_set_op_res_gpointer (result, data, g_free); @@ -1000,8 +994,6 @@ abort_reply (GVfsDBusMountOperation *proxy, GAsyncResult *res, gpointer user_data) { - g_print ("gmountsource.c: abort_reply()\n"); - gvfs_dbus_mount_operation_call_aborted_finish (proxy, res, NULL); } -- cgit v1.2.1