diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-06-20 00:49:25 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-06-20 00:50:25 +0800 |
commit | 48d30c3fabc70f012542ffe6c67742f6a39c8f10 (patch) | |
tree | 95c12c109c4406a3aa7ce982deded842b9196a74 /libempathy-gtk/empathy-chat.c | |
parent | e420cf3f2eeabb09f8deef22e615809220eb3139 (diff) | |
download | gsoc2013-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.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 9e69c733a..220cca5d1 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -63,7 +63,7 @@ #define COMPOSING_STOP_TIMEOUT 5 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyChat) -typedef struct { +struct _EmpathyChatPriv { EmpathyTpChat *tp_chat; TpAccount *account; gchar *id; @@ -138,7 +138,7 @@ typedef struct { * notified again about the already notified pending messages when the * messages in tab will be properly shown */ gboolean retrieving_backlogs; -} EmpathyChatPriv; +}; typedef struct { gchar *text; /* Original message that was specified |