diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-31 20:54:15 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-31 20:54:15 +0800 |
commit | 4a20b26434210820bdcc2d38b9c1f4b35eb36e71 (patch) | |
tree | bdfcf7b0da8c4c4fc7dd5fc5754a21a8766069d8 /libempathy-gtk/empathy-individual-view.c | |
parent | 1c1be234740e2e23f755668ce89483f0225ec329 (diff) | |
download | gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar.gz gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar.bz2 gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar.lz gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar.xz gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.tar.zst gsoc2013-empathy-4a20b26434210820bdcc2d38b9c1f4b35eb36e71.zip |
add empathy_individual_view_refilter()
Diffstat (limited to 'libempathy-gtk/empathy-individual-view.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index b5c5022e9..eb41996f5 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -2854,3 +2854,11 @@ empathy_individual_view_set_custom_filter (EmpathyIndividualView *self, priv->custom_filter = filter; priv->custom_filter_data = data; } + +void +empathy_individual_view_refilter (EmpathyIndividualView *self) +{ + EmpathyIndividualViewPriv *priv = GET_PRIV (self); + + gtk_tree_model_filter_refilter (priv->filter); +} |