diff options
Diffstat (limited to 'src/empathy-call-handler.h')
-rw-r--r-- | src/empathy-call-handler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-call-handler.h b/src/empathy-call-handler.h index 3cc0421c7..330d368a5 100644 --- a/src/empathy-call-handler.h +++ b/src/empathy-call-handler.h @@ -34,6 +34,7 @@ G_BEGIN_DECLS typedef struct _EmpathyCallHandler EmpathyCallHandler; typedef struct _EmpathyCallHandlerClass EmpathyCallHandlerClass; +typedef struct _EmpathyCallHandlerPriv EmpathyCallHandlerPriv; struct _EmpathyCallHandlerClass { GObjectClass parent_class; @@ -41,7 +42,7 @@ struct _EmpathyCallHandlerClass { struct _EmpathyCallHandler { GObject parent; - gpointer priv; + EmpathyCallHandlerPriv *priv; }; GType empathy_call_handler_get_type (void); |