Skip to content
Snippets Groups Projects
Commit 24aa2f14 authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

2006-09-13 Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-dbus-client.c: Use default dbus connection timeout.
	  Bug #2243.




(Old svn revision: 23143)
parent d7048cc0
No related branches found
No related tags found
No related merge requests found
2006-09-13 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-dbus-client.c: Use default dbus connection timeout.
Bug #2243.
2006-09-12 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-renamer-model.c(thunar_renamer_model_iter_n_children):
......
......@@ -99,7 +99,7 @@ thunar_dbus_client_bulk_rename (const gchar *working_directory,
g_free (display_name);
/* send the message and release our references on connection and message */
result = dbus_connection_send_with_reply_and_block (connection, message, 2000, &derror);
result = dbus_connection_send_with_reply_and_block (connection, message, -1, &derror);
dbus_message_unref (message);
/* check if no reply was received */
......@@ -194,7 +194,7 @@ thunar_dbus_client_launch_files (const gchar *working_directory,
g_free (display_name);
/* send the message and release our references on connection and message */
result = dbus_connection_send_with_reply_and_block (connection, message, 2000, &derror);
result = dbus_connection_send_with_reply_and_block (connection, message, -1, &derror);
dbus_message_unref (message);
/* check if no reply was received */
......@@ -259,7 +259,7 @@ thunar_dbus_client_terminate (GError **error)
dbus_message_set_auto_start (message, FALSE);
/* send the message and release our references on connection and message */
result = dbus_connection_send_with_reply_and_block (connection, message, 2000, &derror);
result = dbus_connection_send_with_reply_and_block (connection, message, -1, &derror);
dbus_message_unref (message);
/* check if no reply was received */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment