aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-auth-factory.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-03-18 18:43:16 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-03-18 20:47:53 +0800
commitb531101e9f3b6654476d236213ea22e100869a9c (patch)
treea1de2068191592e4a8cff0ec3d81eb9b92d18278 /libempathy/empathy-auth-factory.h
parent37e2773cfddb5ef46d79ccd70593bd16066e6512 (diff)
downloadgsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar.gz
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar.bz2
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar.lz
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar.xz
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.tar.zst
gsoc2013-empathy-b531101e9f3b6654476d236213ea22e100869a9c.zip
auth-factory: use a proper priv pointer
Diffstat (limited to 'libempathy/empathy-auth-factory.h')
-rw-r--r--libempathy/empathy-auth-factory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-auth-factory.h b/libempathy/empathy-auth-factory.h
index 6f62a7a86..e9a670ceb 100644
--- a/libempathy/empathy-auth-factory.h
+++ b/libempathy/empathy-auth-factory.h
@@ -29,6 +29,7 @@ G_BEGIN_DECLS
typedef struct _EmpathyAuthFactory EmpathyAuthFactory;
typedef struct _EmpathyAuthFactoryClass EmpathyAuthFactoryClass;
+typedef struct _EmpathyAuthFactoryPriv EmpathyAuthFactoryPriv;
struct _EmpathyAuthFactoryClass {
TpBaseClientClass parent_class;
@@ -36,7 +37,7 @@ struct _EmpathyAuthFactoryClass {
struct _EmpathyAuthFactory {
TpBaseClient parent;
- gpointer priv;
+ EmpathyAuthFactoryPriv *priv;
};
GType empathy_auth_factory_get_type (void);