aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-view.c
diff options
context:
space:
mode:
authorTravis Reitter <treitter@gmail.com>2010-06-16 07:42:29 +0800
committerTravis Reitter <treitter@gmail.com>2010-07-21 07:12:35 +0800
commit9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8 (patch)
tree3d91193fb0e233d2f7f57b1f0f3ddfc05aab464b /libempathy-gtk/empathy-individual-view.c
parent3e573e124347366975ae1effd18d7127e5fd9397 (diff)
downloadgsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar.gz
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar.bz2
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar.lz
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar.xz
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.tar.zst
gsoc2013-empathy-9be29ffebe4166ab6e985d64efa2ea3a51d2e6b8.zip
Re-add the audio and video call menu items in the call-activated handler.
Diffstat (limited to 'libempathy-gtk/empathy-individual-view.c')
-rw-r--r--libempathy-gtk/empathy-individual-view.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c
index 7d3548756..5a0a56651 100644
--- a/libempathy-gtk/empathy-individual-view.c
+++ b/libempathy-gtk/empathy-individual-view.c
@@ -939,12 +939,14 @@ individual_view_call_activated_cb (EmpathyCellRendererActivatable *cell,
shell = GTK_MENU_SHELL (menu);
/* audio */
- /* TODO: implement */
- DEBUG ("audio call menu item unimplemented");
+ item = empathy_individual_audio_call_menu_item_new (individual);
+ gtk_menu_shell_append (shell, item);
+ gtk_widget_show (item);
/* video */
- /* TODO: implement */
- DEBUG ("video call menu item unimplemented");
+ item = empathy_individual_video_call_menu_item_new (individual);
+ gtk_menu_shell_append (shell, item);
+ gtk_widget_show (item);
g_signal_connect (menu, "deactivate", G_CALLBACK (gtk_menu_detach), NULL);
gtk_menu_attach_to_widget (GTK_MENU (menu), GTK_WIDGET (view), NULL);