Mercurial > pidgin
diff finch/gntnotify.c @ 31909:6283c0f2b02f
Change PurpleNotifyUserInfo->user_info_entries from a GList to a GQueue.
This makes appending fast.
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 22 Aug 2011 04:14:16 +0000 |
| parents | 0d4702446530 |
| children | 8878ea011fa1 3828a61c44da |
line wrap: on
line diff
--- a/finch/gntnotify.c Mon Aug 22 03:40:04 2011 +0000 +++ b/finch/gntnotify.c Mon Aug 22 04:14:16 2011 +0000 @@ -290,7 +290,7 @@ text = g_string_new("<span>"); - for (l = purple_notify_user_info_get_entries(user_info); l != NULL; + for (l = purple_notify_user_info_get_entries(user_info)->head; l != NULL; l = l->next) { PurpleNotifyUserInfoEntry *user_info_entry = l->data; PurpleNotifyUserInfoEntryType type = purple_notify_user_info_entry_get_type(user_info_entry);
