diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-11 21:30:29 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-11 21:30:29 +0800 |
commit | fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd (patch) | |
tree | e31b960b32ad4e6a2e7a8c5b96ef8a44f5db893a /src/empathy-chat-window.h | |
parent | b1d3fec398564d8f4e46daa9e43ec3ccb25805fd (diff) | |
download | gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar.gz gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar.bz2 gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar.lz gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar.xz gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.tar.zst gsoc2013-empathy-fe6e6539e31484f8a4c5ec8b762c1964f59f9ffd.zip |
chat-window: use self->priv pattern
Diffstat (limited to 'src/empathy-chat-window.h')
-rw-r--r-- | src/empathy-chat-window.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-chat-window.h b/src/empathy-chat-window.h index da3f6408a..7804bd4b9 100644 --- a/src/empathy-chat-window.h +++ b/src/empathy-chat-window.h @@ -60,11 +60,12 @@ G_BEGIN_DECLS typedef struct _EmpathyChatWindow EmpathyChatWindow; typedef struct _EmpathyChatWindowClass EmpathyChatWindowClass; +typedef struct _EmpathyChatWindowPriv EmpathyChatWindowPriv; struct _EmpathyChatWindow { GObject parent; - gpointer priv; + EmpathyChatWindowPriv *priv; }; struct _EmpathyChatWindowClass |