pidgin: 079a5ca1: Fix the dbus type for calling PurpleBlis...

paul at darkrain42.org paul at darkrain42.org
Fri Apr 10 23:00:43 EDT 2009


-----------------------------------------------------------------
Revision: 079a5ca1aa110ee9f6661eba31e5ea3f0b5a07e7
Ancestor: e06875d3f74554aa4531dadae7ff7b71e609725c
Author: paul at darkrain42.org
Date: 2009-04-11T02:55:46
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/079a5ca1aa110ee9f6661eba31e5ea3f0b5a07e7

Modified files:
        pidgin/gtkmain.c

ChangeLog: 

Fix the dbus type for calling PurpleBlistSetVisible.

See [0d3ce6dca7222c77b50e8a23fe0ed1bae02928a8] for why this broke.
Fixes #8916.

-------------- next part --------------
============================================================
--- pidgin/gtkmain.c	60f68abb76d439fbf606f5129a564b424fc2c654
+++ pidgin/gtkmain.c	e8b5e9c5fa4c46fef1318293e9c3d96ac583d0c5
@@ -787,7 +787,7 @@ int main(int argc, char *argv[])
 		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


More information about the Commits mailing list