diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-09 19:14:16 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-10 00:35:24 +0800 |
commit | d7293eb2b362224a70ad1c8402691c987b1caf1c (patch) | |
tree | 55af9c5ad3a70dbc337c61db2a5fa26601ea78c4 /libempathy/empathy-auth-factory.h | |
parent | db9e0a4a2394977b62f1034864365b1cae6f4714 (diff) | |
download | gsoc2013-empathy-d7293eb2b362224a70ad1c8402691c987b1caf1c.tar.gz gsoc2013-empathy-d7293eb2b362224a70ad1c8402691c987b1caf1c.tar.zst gsoc2013-empathy-d7293eb2b362224a70ad1c8402691c987b1caf1c.zip |
auth-factory: become an Observer and claim auth channels where necessary
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-auth-factory.h')
-rw-r--r-- | libempathy/empathy-auth-factory.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy/empathy-auth-factory.h b/libempathy/empathy-auth-factory.h index 507f69b95..6f62a7a86 100644 --- a/libempathy/empathy-auth-factory.h +++ b/libempathy/empathy-auth-factory.h @@ -23,17 +23,19 @@ #include <glib-object.h> +#include <telepathy-glib/base-client.h> + G_BEGIN_DECLS typedef struct _EmpathyAuthFactory EmpathyAuthFactory; typedef struct _EmpathyAuthFactoryClass EmpathyAuthFactoryClass; struct _EmpathyAuthFactoryClass { - GObjectClass parent_class; + TpBaseClientClass parent_class; }; struct _EmpathyAuthFactory { - GObject parent; + TpBaseClient parent; gpointer priv; }; |