aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-auth-factory.h
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2010-12-09 19:14:16 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-01-26 21:36:27 +0800
commitbbaaf66212149f16267b20646cd281f948670d90 (patch)
treeca7f5b0ca5a163a171be80621a50f95386976041 /libempathy/empathy-auth-factory.h
parentf0a51dddd8192d0c4e8eca0dcbf1267a23f52a30 (diff)
downloadgsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar.gz
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar.bz2
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar.lz
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar.xz
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.tar.zst
gsoc2013-empathy-bbaaf66212149f16267b20646cd281f948670d90.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.h6
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;
};