aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-account-chooser.h
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2009-10-24 22:43:38 +0800
committerJonny Lamb <jonnylamb@gnome.org>2009-10-24 22:43:38 +0800
commit38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f (patch)
treeb275b97d5cebd275f690473920a93b03a256051e /libempathy-gtk/empathy-account-chooser.h
parent5d0242ce18d39faed5fc2924cb58e8963150504c (diff)
downloadgsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar.gz
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar.bz2
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar.lz
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar.xz
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.tar.zst
gsoc2013-empathy-38d2cb938c3b91f6cbc89b825d720bdf35fb8e5f.zip
account-chooser: port to new tp-glib account API
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy-gtk/empathy-account-chooser.h')
-rw-r--r--libempathy-gtk/empathy-account-chooser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-account-chooser.h b/libempathy-gtk/empathy-account-chooser.h
index 255b6841f..075bea81c 100644
--- a/libempathy-gtk/empathy-account-chooser.h
+++ b/libempathy-gtk/empathy-account-chooser.h
@@ -27,7 +27,7 @@
#include <gtk/gtk.h>
-#include <libempathy/empathy-account.h>
+#include <telepathy-glib/account.h>
G_BEGIN_DECLS
@@ -38,7 +38,7 @@ G_BEGIN_DECLS
#define EMPATHY_IS_ACCOUNT_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_ACCOUNT_CHOOSER))
#define EMPATHY_ACCOUNT_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooserClass))
-typedef gboolean (* EmpathyAccountChooserFilterFunc) (EmpathyAccount *account,
+typedef gboolean (* EmpathyAccountChooserFilterFunc) (TpAccount *account,
gpointer user_data);
@@ -58,17 +58,17 @@ struct _EmpathyAccountChooserClass {
GType empathy_account_chooser_get_type (void) G_GNUC_CONST;
GtkWidget * empathy_account_chooser_new (void);
-EmpathyAccount * empathy_account_chooser_dup_account (EmpathyAccountChooser *chooser);
+TpAccount * empathy_account_chooser_dup_account (EmpathyAccountChooser *chooser);
TpConnection * empathy_account_chooser_get_connection (EmpathyAccountChooser *chooser);
gboolean empathy_account_chooser_set_account (EmpathyAccountChooser *chooser,
- EmpathyAccount *account);
+ TpAccount *account);
gboolean empathy_account_chooser_get_has_all_option (EmpathyAccountChooser *chooser);
void empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser,
gboolean has_all_option);
void empathy_account_chooser_set_filter (EmpathyAccountChooser *chooser,
EmpathyAccountChooserFilterFunc filter,
gpointer user_data);
-gboolean empathy_account_chooser_filter_is_connected (EmpathyAccount *account,
+gboolean empathy_account_chooser_filter_is_connected (TpAccount *account,
gpointer user_data);
G_END_DECLS