Wed, 29 Apr 2009 19:39:11 +0000
*** Plucked rev 079a5ca1 (paul@darkrain42.org):
Fix the dbus type for calling PurpleBlistSetVisible.
See [6e277cdcdcaf4cbf730789c7f3dd5226a90b1d5f] for why this broke.
Fixes #8916.
| pidgin/gtkmain.c | file | annotate | diff | comparison | revisions |
--- a/pidgin/gtkmain.c Wed Apr 29 18:45:54 2009 +0000 +++ b/pidgin/gtkmain.c Wed Apr 29 19:39:11 2009 +0000 @@ -781,7 +781,7 @@ DBusMessage *message = dbus_message_new_method_call(DBUS_SERVICE_PURPLE, DBUS_PATH_PURPLE, DBUS_INTERFACE_PURPLE, "PurpleBlistSetVisible"); gboolean tr = TRUE; - dbus_message_append_args(message, DBUS_TYPE_UINT32, &tr, DBUS_TYPE_INVALID); + dbus_message_append_args(message, DBUS_TYPE_INT32, &tr, DBUS_TYPE_INVALID); dbus_connection_send_with_reply_and_block(conn, message, -1, NULL); dbus_message_unref(message); #endif