summaryrefslogtreecommitdiff
path: root/tp-account-widgets/tpaw-connection-managers.h
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-10 17:01:31 +0100
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 11:03:06 +0100
commit3abe4df5f32c37e968d0556c755b8387d9f1f771 (patch)
treeec24331ac656b5292b2c3400e3399de80aa7c79d /tp-account-widgets/tpaw-connection-managers.h
parent7eae2e49e62834cfff13cc2ee10b37eaff38a6fb (diff)
downloadtelepathy-account-widgets-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.gz
tpaw-utils: use self->priv instead of EMPATHY_GET_PRIV(self)
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'tp-account-widgets/tpaw-connection-managers.h')
-rw-r--r--tp-account-widgets/tpaw-connection-managers.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tp-account-widgets/tpaw-connection-managers.h b/tp-account-widgets/tpaw-connection-managers.h
index 33e5aa08..dba476b4 100644
--- a/tp-account-widgets/tpaw-connection-managers.h
+++ b/tp-account-widgets/tpaw-connection-managers.h
@@ -28,6 +28,7 @@
G_BEGIN_DECLS
typedef struct _TpawConnectionManagers TpawConnectionManagers;
+typedef struct _TpawConnectionManagersPriv TpawConnectionManagersPriv;
typedef struct _TpawConnectionManagersClass TpawConnectionManagersClass;
struct _TpawConnectionManagersClass {
@@ -36,7 +37,8 @@ struct _TpawConnectionManagersClass {
struct _TpawConnectionManagers {
GObject parent;
- gpointer priv;
+ /*<private>*/
+ TpawConnectionManagersPriv *priv;
};
GType tpaw_connection_managers_get_type (void);