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 /src/empathy-account-assistant.c | |
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 'src/empathy-account-assistant.c')
-rw-r--r-- | src/empathy-account-assistant.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index eecbb5d7b..9e6a5fc04 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -373,6 +373,7 @@ static gboolean account_assistant_chooser_enter_details_filter_func ( TpConnectionManager *cm, TpConnectionManagerProtocol *protocol, + gboolean is_gtalk, gpointer user_data) { if (!tp_strdiff (protocol->name, "local-xmpp") || @@ -386,6 +387,7 @@ static gboolean account_assistant_chooser_create_account_filter_func ( TpConnectionManager *cm, TpConnectionManagerProtocol *protocol, + gboolean is_gtalk, gpointer user_data) { return tp_connection_manager_protocol_can_register (protocol); |