diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-15 22:00:48 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-15 22:00:48 +0800 |
commit | 2d22d576e51764d4125786e10cdc4d86b7f813bd (patch) | |
tree | 5abf73aa1d8158e5d6dbcd89aafcc484e778b51b | |
parent | 1b43fc8fad17b04b5f594731e06bcbea6c4c46a3 (diff) | |
download | gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar.gz gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar.bz2 gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar.lz gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar.xz gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.tar.zst gsoc2013-empathy-2d22d576e51764d4125786e10cdc4d86b7f813bd.zip |
Fix compile error
svn path=/trunk/; revision=1251
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 9925527a5..662138efe 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -685,7 +685,7 @@ contact_list_view_row_activated_cb (EmpathyContactListView *view, } /* If the contact has an event, activate it */ - if (priv->contact_features & EMPATHY_CONTACT_FEATURE_EVENT) { + if (priv->contact_features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_EVENTS) { GSList *events, *l; events = empathy_event_manager_get_events (priv->event_manager); |