diff options
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; }; |