From: Xavier Claessens Date: Tue, 15 Jul 2008 14:00:56 +0000 (+0000) Subject: Add a comment telling that if there is no event the default handler of row-activated... X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=65ba1ecd2a029eac1fbb23d0239fe110d0f15679 Add a comment telling that if there is no event the default handler of row-activated will be called. svn path=/trunk/; revision=1257 --- diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 371d9d1e..920840ca 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -346,7 +346,8 @@ main_window_row_activated_cb (EmpathyContactListView *view, return; } - /* If the contact has an event, activate it */ + /* If the contact has an event activate it, otherwise the + * default handler of row-activated will be called. */ events = empathy_event_manager_get_events (window->event_manager); for (l = events; l; l = l->next) { EmpathyEvent *event = l->data;