diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-03 15:48:42 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-03 16:22:05 +0200 |
commit | cf0e9d8b366792a9df8303778fcda2dec21217ea (patch) | |
tree | 86cfb4b49cd003d18e08e65d61a9ad0d683322d4 | |
parent | e17cd19f2341eeafa666301580fed1f0a77c83a6 (diff) |
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:
-rw-r--r-- | telepathy-glib/stream-tube-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 * |