From 65fac9c002b47ba0c8a3e4e0d6c4fa9494b2f771 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 10 Jun 2011 12:39:42 +0200 Subject: Rationalize use of EMPATHY_IMAGE_CALL_* images (#652270) We now always use call-start for incoming and outgoing calls and call-stop for missed ones. Ideally it would be cool to have different icons for incoming and outgoing but that will do for now. --- libempathy-gtk/empathy-log-window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libempathy-gtk/empathy-log-window.c') diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 4ff658834..ef004b40c 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -2270,14 +2270,14 @@ log_window_what_setup (EmpathyLogWindow *window) { WHAT_TYPE_SEPARATOR, 0, NULL, "separator" }, { TPL_EVENT_MASK_TEXT, 0, "stock_text_justify", _("Text chats") }, #ifdef HAVE_CALL_LOGS - { TPL_EVENT_MASK_CALL, EVENT_CALL_ALL, "call-start", _("Calls") }, + { TPL_EVENT_MASK_CALL, EVENT_CALL_ALL, EMPATHY_IMAGE_CALL, _("Calls") }, #endif }; #ifdef HAVE_CALL_LOGS struct event call_events [] = { - { TPL_EVENT_MASK_CALL, EVENT_CALL_INCOMING, "call-start", _("Incoming calls") }, - { TPL_EVENT_MASK_CALL, EVENT_CALL_OUTGOING, "call-start", _("Outgoing calls") }, - { TPL_EVENT_MASK_CALL, EVENT_CALL_MISSED, "call-stop", _("Missed calls") } + { TPL_EVENT_MASK_CALL, EVENT_CALL_INCOMING, EMPATHY_IMAGE_CALL_INCOMING, _("Incoming calls") }, + { TPL_EVENT_MASK_CALL, EVENT_CALL_OUTGOING, EMPATHY_IMAGE_CALL_OUTGOING, _("Outgoing calls") }, + { TPL_EVENT_MASK_CALL, EVENT_CALL_MISSED, EMPATHY_IMAGE_CALL_MISSED, _("Missed calls") } }; GtkTreeIter parent; #endif -- cgit v1.2.3