diff -u pidgin-2.5.5/debian/changelog pidgin-2.5.5/debian/changelog --- pidgin-2.5.5/debian/changelog +++ pidgin-2.5.5/debian/changelog @@ -1,3 +1,11 @@ +pidgin (1:2.5.5-1ubuntu6) jaunty; urgency=low + + * debian/patches/62_dbus_fix.patch: + - The buddy list should be raised when launching a second time, this patch + from darkrain42 fixes a bug that prevented that behavior (LP: #354298) + + -- Ken VanDine Wed, 08 Apr 2009 14:00:07 -0400 + pidgin (1:2.5.5-1ubuntu5) jaunty; urgency=low * debian/patches/61_crash_on_close_349009.patch only in patch2: unchanged: --- pidgin-2.5.5.orig/debian/patches/62_dbus_fix.patch +++ pidgin-2.5.5/debian/patches/62_dbus_fix.patch @@ -0,0 +1,17 @@ +# +# Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/354298 +# Upstream: http://developer.pidgin.im/ticket/8916 +# Description: Buddy list should raise when trying to launch pidgin a second time +# +============================================================ +--- pidgin/gtkmain.c 9969c0180c98f26e1312f35b33092667914b9dea ++++ pidgin/gtkmain.c 5bcfddde78a670282357d43002f20c413a6463f4 +@@ -780,7 +780,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