aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-store.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-04 17:55:43 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-14 17:29:46 +0800
commit8a831cca81b2411227ded99eddeab7bc6b1823ac (patch)
treed6300131537b418739de7c2fc461c5e688aa6646 /libempathy-gtk/empathy-individual-store.h
parent0a04322be34dcaecf2490b56f98a332a88947d9a (diff)
downloadgsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar.gz
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar.bz2
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar.lz
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar.xz
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.tar.zst
gsoc2013-empathy-8a831cca81b2411227ded99eddeab7bc6b1823ac.zip
individual-store: use self->priv pattern
https://bugzilla.gnome.org/show_bug.cgi?id=663387 https://bugzilla.gnome.org/show_bug.cgi?id=663763
Diffstat (limited to 'libempathy-gtk/empathy-individual-store.h')
-rw-r--r--libempathy-gtk/empathy-individual-store.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-store.h b/libempathy-gtk/empathy-individual-store.h
index 418761ead..dc0c0d7ea 100644
--- a/libempathy-gtk/empathy-individual-store.h
+++ b/libempathy-gtk/empathy-individual-store.h
@@ -38,8 +38,10 @@ G_BEGIN_DECLS
#define EMPATHY_IS_INDIVIDUAL_STORE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_INDIVIDUAL_STORE))
#define EMPATHY_IS_INDIVIDUAL_STORE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_INDIVIDUAL_STORE))
#define EMPATHY_INDIVIDUAL_STORE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_INDIVIDUAL_STORE, EmpathyIndividualStoreClass))
+
typedef struct _EmpathyIndividualStore EmpathyIndividualStore;
typedef struct _EmpathyIndividualStoreClass EmpathyIndividualStoreClass;
+typedef struct _EmpathyIndividualStorePriv EmpathyIndividualStorePriv;
typedef enum
{
@@ -76,7 +78,7 @@ typedef enum
struct _EmpathyIndividualStore
{
GtkTreeStore parent;
- gpointer priv;
+ EmpathyIndividualStorePriv *priv;
};
struct _EmpathyIndividualStoreClass