diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-19 22:01:26 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-19 23:46:54 +0800 |
commit | 8da0a6feaddfa5ab7df373f0f85c7124b31774e8 (patch) | |
tree | a14e5cdc29bb6ae642d75ec1a102d2e14a75f745 /libempathy-gtk/empathy-protocol-chooser.h | |
parent | 3241a32e5b7fc4ee8ae8907fbdde74d98660ebca (diff) | |
download | gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar.gz gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar.bz2 gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar.lz gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar.xz gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.tar.zst gsoc2013-empathy-8da0a6feaddfa5ab7df373f0f85c7124b31774e8.zip |
Pass a boolean saying if the protocol is Google Talk or not to EmpathyProtocolChooserFilterFunc
That's the only way to filter Google Talk if we want to.
Diffstat (limited to 'libempathy-gtk/empathy-protocol-chooser.h')
-rw-r--r-- | libempathy-gtk/empathy-protocol-chooser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-protocol-chooser.h b/libempathy-gtk/empathy-protocol-chooser.h index a649aa578..088d1b664 100644 --- a/libempathy-gtk/empathy-protocol-chooser.h +++ b/libempathy-gtk/empathy-protocol-chooser.h @@ -59,7 +59,9 @@ struct _EmpathyProtocolChooserClass }; typedef gboolean (*EmpathyProtocolChooserFilterFunc) (TpConnectionManager *cm, - TpConnectionManagerProtocol *protocol, gpointer user_data); + TpConnectionManagerProtocol *protocol, + gboolean is_gtalk, + gpointer user_data); GType empathy_protocol_chooser_get_type (void) G_GNUC_CONST; GtkWidget * empathy_protocol_chooser_new (void); |