diff mcabber/src/screen.c @ 987:f47e312560af

Improve JEP22 + JEP85 support
author Mikael Berthe <mikael@lilotux.net>
date Mon, 30 Oct 2006 20:18:00 +0100
parents ed697234bd39
children 35e7913affb7
line wrap: on
line diff
--- a/mcabber/src/screen.c	Sun Oct 29 11:43:00 2006 +0100
+++ b/mcabber/src/screen.c	Mon Oct 30 20:18:00 2006 +0100
@@ -1191,14 +1191,9 @@
     for ( ; resources ; resources = g_slist_next(resources) ) {
       guint events = buddy_resource_getevents(BUDDATA(buddy),
                                               resources ? resources->data : "");
-      if (events) {
-        if (events & ROSTER_EVENT_MSG && false) { // FIXME: not yet.
-          pending = '#';
-          break;
-        } else if (events & ROSTER_EVENT_COMPOSING) {
-          pending = '+';
-          break;
-        }
+      if (events & ROSTER_EVENT_COMPOSING) {
+        pending = '+';
+        break;
       }
     }