diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-04-27 22:17:37 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-25 15:22:41 +0800 |
commit | 4e39c2c5adac55793143c110159fa40cc51f324c (patch) | |
tree | f4aa2b18ef48b221942d53ecffd075228a6c91cf /libempathy/empathy-tp-chat.h | |
parent | 64d8e268e6be5afc2afd80ff93d9803318dc5953 (diff) | |
download | gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar.gz gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar.bz2 gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar.lz gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar.xz gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.tar.zst gsoc2013-empathy-4e39c2c5adac55793143c110159fa40cc51f324c.zip |
tp-chat: use the self->priv pattern
Diffstat (limited to 'libempathy/empathy-tp-chat.h')
-rw-r--r-- | libempathy/empathy-tp-chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-chat.h b/libempathy/empathy-tp-chat.h index 83c7fe7d1..629c1e598 100644 --- a/libempathy/empathy-tp-chat.h +++ b/libempathy/empathy-tp-chat.h @@ -42,10 +42,11 @@ G_BEGIN_DECLS typedef struct _EmpathyTpChat EmpathyTpChat; typedef struct _EmpathyTpChatClass EmpathyTpChatClass; +typedef struct _EmpathyTpChatPrivate EmpathyTpChatPrivate; struct _EmpathyTpChat { GObject parent; - gpointer priv; + EmpathyTpChatPrivate *priv; }; struct _EmpathyTpChatClass { |