comparison mcabber/mcabber/events.c @ 1729:e6e89b1d7831

Minor style and header updates
author Mikael Berthe <mikael@lilotux.net>
date Sun, 28 Feb 2010 15:19:27 +0100
parents 1342df44c814
children e6d355e50d7a
comparison
equal deleted inserted replaced
1728:15b3834cbe5f 1729:e6e89b1d7831
200 evs_t *event = eel->data; 200 evs_t *event = eel->data;
201 if (event->notify) 201 if (event->notify)
202 event->notify(event->data); 202 event->notify(event->data);
203 if (event->source) 203 if (event->source)
204 g_source_remove(event->source); 204 g_source_remove(event->source);
205 205
206 evs_list = g_slist_remove(evs_list, event); 206 evs_list = g_slist_remove(evs_list, event);
207 g_free(event->id); 207 g_free(event->id);
208 g_free(event->description); 208 g_free(event->description);
209 g_free(event); 209 g_free(event);
210 } 210 }