aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-06-07 20:53:45 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-06-08 17:14:20 +0800
commit49f661f321635b6b0350dbf27aec3548fbff8ee2 (patch)
tree99b208adf1d6c6f43224953534265e1f27230756 /libempathy-gtk
parent92ee08109f1af2bd3862b6f1c21a7a52adb0f9a4 (diff)
downloadgsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar.gz
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar.bz2
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar.lz
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar.xz
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.tar.zst
gsoc2013-empathy-49f661f321635b6b0350dbf27aec3548fbff8ee2.zip
individual-store: keep track of the number of events associated with each row
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-individual-store.c1
-rw-r--r--libempathy-gtk/empathy-individual-store.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c
index ac1a96c02..e4e644424 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -1572,6 +1572,7 @@ individual_store_setup (EmpathyIndividualStore *self)
G_TYPE_BOOLEAN, /* Can make video calls */
G_TYPE_BOOLEAN, /* Is a fake group */
G_TYPE_STRV, /* Client types */
+ G_TYPE_UINT, /* Event count */
};
priv = GET_PRIV (self);
diff --git a/libempathy-gtk/empathy-individual-store.h b/libempathy-gtk/empathy-individual-store.h
index ae5f3c580..418761ead 100644
--- a/libempathy-gtk/empathy-individual-store.h
+++ b/libempathy-gtk/empathy-individual-store.h
@@ -65,6 +65,7 @@ typedef enum
EMPATHY_INDIVIDUAL_STORE_COL_CAN_VIDEO_CALL,
EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP,
EMPATHY_INDIVIDUAL_STORE_COL_CLIENT_TYPES,
+ EMPATHY_INDIVIDUAL_STORE_COL_EVENT_COUNT,
EMPATHY_INDIVIDUAL_STORE_COL_COUNT,
} EmpathyIndividualStoreCol;