summaryrefslogtreecommitdiff
path: root/common/gmountoperationdbus.c
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2012-07-31 15:52:54 +0200
committerTomas Bzatek <tbzatek@redhat.com>2012-07-31 15:52:54 +0200
commit023f677e887120b5b4ae159108f94dd1d39fd821 (patch)
tree18c901e60485433735baf34c2ea7073716db2ed2 /common/gmountoperationdbus.c
parentffd0031b6cce90332d744a7aad370e5cd694cbba (diff)
downloadgvfs-023f677e887120b5b4ae159108f94dd1d39fd821.tar.gz
gdbus: Remove debug prints
Diffstat (limited to 'common/gmountoperationdbus.c')
-rw-r--r--common/gmountoperationdbus.c10
1 files changed, 0 insertions, 10 deletions
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);