diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-24 22:28:28 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-24 22:28:28 +0800 |
commit | dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6 (patch) | |
tree | 5b49bcb3b848bab3ff0a0e81d2cfc3cfc56c63c6 /libempathy/empathy-account-settings.h | |
parent | e8894e6a663fe524a4d6282befa4a224c16180d5 (diff) | |
download | gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar.gz gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar.bz2 gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar.lz gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar.xz gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.tar.zst gsoc2013-empathy-dba0a67fd1ea3c7bdfd4d5069b4b9f2a43d622b6.zip |
account-settings: port to new tp-glib account API
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-account-settings.h')
-rw-r--r-- | libempathy/empathy-account-settings.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-account-settings.h b/libempathy/empathy-account-settings.h index c7d263e3b..0ea9b5567 100644 --- a/libempathy/empathy-account-settings.h +++ b/libempathy/empathy-account-settings.h @@ -24,7 +24,7 @@ #include <glib-object.h> #include <gio/gio.h> -#include <libempathy/empathy-account.h> +#include <telepathy-glib/account.h> #include <telepathy-glib/connection-manager.h> G_BEGIN_DECLS @@ -66,7 +66,7 @@ EmpathyAccountSettings * empathy_account_settings_new ( const char *display_name); EmpathyAccountSettings * empathy_account_settings_new_for_account ( - EmpathyAccount *account); + TpAccount *account); gboolean empathy_account_settings_is_ready (EmpathyAccountSettings *settings); @@ -74,11 +74,11 @@ const gchar *empathy_account_settings_get_cm (EmpathyAccountSettings *settings); const gchar *empathy_account_settings_get_protocol ( EmpathyAccountSettings *settings); -EmpathyAccount *empathy_account_settings_get_account ( +TpAccount *empathy_account_settings_get_account ( EmpathyAccountSettings *settings); gboolean empathy_account_settings_has_account ( - EmpathyAccountSettings *settings, EmpathyAccount *account); + EmpathyAccountSettings *settings, TpAccount *account); TpConnectionManagerParam *empathy_account_settings_get_tp_params ( EmpathyAccountSettings *settings); |