aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-store.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-04 19:15:47 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-24 19:28:44 +0800
commitedf88058847eb77f8ecc1e5b37fa76e7db9f7ad3 (patch)
tree4bc158be693aab3c3d9c66ad61a0f6761059ded6 /libempathy-gtk/empathy-individual-store.h
parent0c7f25a8206c918d4a84405b7d1ab8e994c65d0f (diff)
downloadgsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar.gz
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar.bz2
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar.lz
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar.xz
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.tar.zst
gsoc2013-empathy-edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3.zip
Abstract the individual store
We now have EmpathyIndividualStoreManager which implements the store using EmpathyIndividualManager as its contact source. https://bugzilla.gnome.org/show_bug.cgi?id=663387
Diffstat (limited to 'libempathy-gtk/empathy-individual-store.h')
-rw-r--r--libempathy-gtk/empathy-individual-store.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-individual-store.h b/libempathy-gtk/empathy-individual-store.h
index 8e62b19d7..3a102d7f8 100644
--- a/libempathy-gtk/empathy-individual-store.h
+++ b/libempathy-gtk/empathy-individual-store.h
@@ -29,8 +29,6 @@
#include <gtk/gtk.h>
-#include <libempathy/empathy-individual-manager.h>
-
G_BEGIN_DECLS
#define EMPATHY_TYPE_INDIVIDUAL_STORE (empathy_individual_store_get_type ())
#define EMPATHY_INDIVIDUAL_STORE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_INDIVIDUAL_STORE, EmpathyIndividualStore))
@@ -88,17 +86,13 @@ struct _EmpathyIndividualStore
struct _EmpathyIndividualStoreClass
{
GtkTreeStoreClass parent_class;
+
+ void (*reload_individuals) (EmpathyIndividualStore *self);
};
GType
empathy_individual_store_get_type (void) G_GNUC_CONST;
-EmpathyIndividualStore *empathy_individual_store_new (
- EmpathyIndividualManager *manager);
-
-EmpathyIndividualManager *empathy_individual_store_get_manager (
- EmpathyIndividualStore *store);
-
gboolean empathy_individual_store_get_show_avatars (
EmpathyIndividualStore *store);