diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-07 20:11:20 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-07 20:11:20 +0800 |
commit | b07ca79425096c6e6f1cafda1be19b85cc2983a2 (patch) | |
tree | 6107a18e01416ae028849c13714d0d30eb3061a1 /libempathy/empathy-tp-file.h | |
parent | 8846f4598c605911fa1c8bee6b5dd4e6aacb9a53 (diff) | |
download | gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar.gz gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar.bz2 gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar.lz gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar.xz gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.tar.zst gsoc2013-empathy-b07ca79425096c6e6f1cafda1be19b85cc2983a2.zip |
tp-file: use the self->priv pattern
Diffstat (limited to 'libempathy/empathy-tp-file.h')
-rw-r--r-- | libempathy/empathy-tp-file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-file.h b/libempathy/empathy-tp-file.h index ad3af72ee..aca8a0f89 100644 --- a/libempathy/empathy-tp-file.h +++ b/libempathy/empathy-tp-file.h @@ -56,11 +56,12 @@ typedef enum { } EmpathyFTErrorEnum; typedef struct _EmpathyTpFile EmpathyTpFile; +typedef struct _EmpathyTpFilePrivate EmpathyTpFilePrivate; typedef struct _EmpathyTpFileClass EmpathyTpFileClass; struct _EmpathyTpFile { GObject parent; - gpointer priv; + EmpathyTpFilePrivate *priv; }; struct _EmpathyTpFileClass { |