aboutsummaryrefslogtreecommitdiffstats
path: root/tests/interactive/test-empathy-dual-roster-view.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-04 18:59:40 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-04 18:59:40 +0800
commit2922737e84cc38ca3f151602b2a94acda74a2008 (patch)
tree5be61956b4c1f73b0f7d53842c1a4dc2b836cd7c /tests/interactive/test-empathy-dual-roster-view.c
parent24238851a5f3617c52bd60d1f99ac5eef0c079a1 (diff)
downloadgsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar.gz
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar.bz2
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar.lz
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar.xz
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.tar.zst
gsoc2013-empathy-2922737e84cc38ca3f151602b2a94acda74a2008.zip
fix 'popup-individual-menu' in roster tests
We added the 'group' argument to the signal.
Diffstat (limited to 'tests/interactive/test-empathy-dual-roster-view.c')
-rw-r--r--tests/interactive/test-empathy-dual-roster-view.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/interactive/test-empathy-dual-roster-view.c b/tests/interactive/test-empathy-dual-roster-view.c
index 5d2dfdc55..b98cb3c0e 100644
--- a/tests/interactive/test-empathy-dual-roster-view.c
+++ b/tests/interactive/test-empathy-dual-roster-view.c
@@ -18,6 +18,7 @@ individual_activated_cb (EmpathyRosterView *self,
static void
popup_individual_menu_cb (EmpathyRosterView *self,
+ const gchar *group,
FolksIndividual *individual,
guint button,
guint time,
@@ -25,8 +26,8 @@ popup_individual_menu_cb (EmpathyRosterView *self,
{
GtkWidget *menu, *item;
- g_print ("'%s' popup menu\n",
- folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
+ g_print ("'%s' (group: %s) popup menu\n",
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)), group);
menu = gtk_menu_new ();