diff options
author | Chandni Verma <chandniverma2112@gmail.com> | 2013-06-30 03:14:20 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2013-07-21 03:39:39 +0800 |
commit | ade3fc34bbc44dac9220e60f496e82f651180755 (patch) | |
tree | 91bbd620845da54fca4bc7791b3cfbe24721f2a0 /src | |
parent | 07c3b37828c4ecb649e439859254916a87b36707 (diff) | |
download | gsoc2013-empathy-ade3fc34bbc44dac9220e60f496e82f651180755.tar.gz gsoc2013-empathy-ade3fc34bbc44dac9220e60f496e82f651180755.tar.zst gsoc2013-empathy-ade3fc34bbc44dac9220e60f496e82f651180755.zip |
Install property active-group in EmpathyIndividualMenu
https://bugzilla.gnome.org/show_bug.cgi?id=585440
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-roster-window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c index 7c943b43c..0fb2d83a7 100644 --- a/src/empathy-roster-window.c +++ b/src/empathy-roster-window.c @@ -1949,6 +1949,7 @@ menu_deactivate_cb (GtkMenuShell *menushell, static void popup_individual_menu_cb (EmpathyRosterView *view, + const gchar *active_group, FolksIndividual *individual, guint button, guint time, @@ -1965,7 +1966,8 @@ popup_individual_menu_cb (EmpathyRosterView *view, EMPATHY_INDIVIDUAL_FEATURE_REMOVE | EMPATHY_INDIVIDUAL_FEATURE_FILE_TRANSFER; - menu = empathy_individual_menu_new (individual, features, NULL); + menu = empathy_individual_menu_new (individual, active_group, + features, NULL); /* menu is initially unowned but gtk_menu_attach_to_widget() takes its * floating ref. We can either wait for the view to release its ref |