aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat.h
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2010-06-20 00:49:25 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2010-06-20 00:50:25 +0800
commit48d30c3fabc70f012542ffe6c67742f6a39c8f10 (patch)
tree95c12c109c4406a3aa7ce982deded842b9196a74 /libempathy-gtk/empathy-chat.h
parente420cf3f2eeabb09f8deef22e615809220eb3139 (diff)
downloadgsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar.gz
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar.bz2
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar.lz
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar.xz
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.tar.zst
gsoc2013-empathy-48d30c3fabc70f012542ffe6c67742f6a39c8f10.zip
EmpathyChat: use an opaque struct for priv not a void pointer
Diffstat (limited to 'libempathy-gtk/empathy-chat.h')
-rw-r--r--libempathy-gtk/empathy-chat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat.h b/libempathy-gtk/empathy-chat.h
index 7f3ebda26..596b83f5d 100644
--- a/libempathy-gtk/empathy-chat.h
+++ b/libempathy-gtk/empathy-chat.h
@@ -47,10 +47,11 @@ G_BEGIN_DECLS
typedef struct _EmpathyChat EmpathyChat;
typedef struct _EmpathyChatClass EmpathyChatClass;
+typedef struct _EmpathyChatPriv EmpathyChatPriv;
struct _EmpathyChat {
GtkBin parent;
- gpointer priv;
+ EmpathyChatPriv *priv;
/* Protected */
EmpathyChatView *view;