diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2007-10-01 Xavier Claessens <xclaesse@gmail.com> + * libempathy-gtk/empathy-contact-list-view.c: Add a #ifdef HAVE_VOIP. + Fixes bug #482190 (Marco Barisione). + +2007-10-01 Xavier Claessens <xclaesse@gmail.com> + * data/Makefile.am: * data/empathy.desktop.in.in: Use fd.o standard location for autostart desktop files. Fixes bug #481860 (Stephane Loeuillet). diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index d199165a4..70a2b0c0a 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -1220,8 +1220,10 @@ contact_list_view_get_contact_menu (EmpathyContactListView *view, action = gtk_ui_manager_get_action (priv->ui, "/Contact/Log"); gtk_action_set_sensitive (action, can_show_log); +#ifdef HAVE_VOIP action = gtk_ui_manager_get_action (priv->ui, "/Contact/Call"); gtk_action_set_sensitive (action, can_voip); +#endif action = gtk_ui_manager_get_action (priv->ui, "/Contact/SendFile"); gtk_action_set_visible (action, can_send_file); |