[empathy/gnome-2-34] auth-factory: use a proper priv pointer



commit a83655b4102c6bf161af1c2a41c6c812601b3fce
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Fri Mar 18 11:43:16 2011 +0100

    auth-factory: use a proper priv pointer

 libempathy/empathy-auth-factory.c |    4 ++--
 libempathy/empathy-auth-factory.h |    3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/libempathy/empathy-auth-factory.c b/libempathy/empathy-auth-factory.c
index edf3e2c..afaa372 100644
--- a/libempathy/empathy-auth-factory.c
+++ b/libempathy/empathy-auth-factory.c
@@ -35,14 +35,14 @@
 
 G_DEFINE_TYPE (EmpathyAuthFactory, empathy_auth_factory, TP_TYPE_BASE_CLIENT);
 
-typedef struct {
+struct _EmpathyAuthFactoryPriv {
   /* Keep a ref here so the auth client doesn't have to mess with
    * refs. It will be cleared when the channel (and so the handler)
    * gets invalidated. */
   EmpathyServerSASLHandler *sasl_handler;
 
   gboolean dispose_run;
-} EmpathyAuthFactoryPriv;
+};
 
 enum {
   NEW_SERVER_TLS_HANDLER,
diff --git a/libempathy/empathy-auth-factory.h b/libempathy/empathy-auth-factory.h
index 6f62a7a..e9a670c 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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]