diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:17:34 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:17:34 +0800 |
commit | 8fbbae973ba5067262b9475c5cfef0ce92d57592 (patch) | |
tree | faa2a3d668c0f693a5ac28af5fb106aa399a136f /libempathy/empathy-tp-file.h | |
parent | 48afb4f6b3f9c79722fe76cd68717086f0df468d (diff) | |
download | gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar.gz gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar.bz2 gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar.lz gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar.xz gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.tar.zst gsoc2013-empathy-8fbbae973ba5067262b9475c5cfef0ce92d57592.zip |
Updated the way to access the EmpathyTpFilePriv instance within empathy-tp-file. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1796
Diffstat (limited to 'libempathy/empathy-tp-file.h')
-rw-r--r-- | libempathy/empathy-tp-file.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libempathy/empathy-tp-file.h b/libempathy/empathy-tp-file.h index 44f6b18af..21007291d 100644 --- a/libempathy/empathy-tp-file.h +++ b/libempathy/empathy-tp-file.h @@ -36,9 +36,6 @@ #include <libmissioncontrol/mc-account.h> -/* Forward-declaration to resolve cyclic dependencies */ -typedef struct _EmpathyTpFile EmpathyTpFile; - #include "empathy-tp-file.h" G_BEGIN_DECLS @@ -52,11 +49,15 @@ G_BEGIN_DECLS #define EMPATHY_IS_TP_FILE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_TP_FILE)) #define EMPATHY_TP_FILE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_TP_FILE, EmpathyTpFileClass)) +typedef struct _EmpathyTpFile EmpathyTpFile; +typedef struct _EmpathyTpFilePriv EmpathyTpFilePriv; typedef struct _EmpathyTpFileClass EmpathyTpFileClass; struct _EmpathyTpFile { GObject parent; + + EmpathyTpFilePriv *priv; }; struct _EmpathyTpFileClass |