Mercurial > pidgin
changeset 25585:3ebd399dd81e
*** Plucked rev 079a5ca1 (paul@darkrain42.org):
Fix the dbus type for calling PurpleBlistSetVisible.
See [0d3ce6dca7222c77b50e8a23fe0ed1bae02928a8] for why this broke.
Fixes #8916.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 29 Apr 2009 19:39:11 +0000 |
parents | 53ea8bed8e18 |
children | f424f26dd329 |
files | pidgin/gtkmain.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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