From cf0e9d8b366792a9df8303778fcda2dec21217ea Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 3 Apr 2012 15:48:42 +0200 Subject: Fix the type of the TpStreamTubeConnection::closed signal python-gobject can't bind G_TYPE_POINTER. This seems to be save from an API/ABI pov according to GLib gurus, we'll just copy the GError instead of passing the same pointer: --- telepathy-glib/stream-tube-connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telepathy-glib/stream-tube-connection.c b/telepathy-glib/stream-tube-connection.c index a179042af..5ad6adc83 100644 --- a/telepathy-glib/stream-tube-connection.c +++ b/telepathy-glib/stream-tube-connection.c @@ -254,7 +254,7 @@ tp_stream_tube_connection_class_init (TpStreamTubeConnectionClass *cls) G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, - 1, G_TYPE_POINTER); + 1, G_TYPE_ERROR); } TpStreamTubeConnection * -- cgit v1.2.1