diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-08-06 20:42:15 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-08-06 20:42:15 +0800 |
commit | 1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394 (patch) | |
tree | 09e86e688bac662dcf1b612f2da4b8b356dc7c04 /libempathy/empathy-tp-chat.c | |
parent | 8c62f091e26106a9145a441ba8bb22330463f1ee (diff) | |
download | gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar.gz gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar.bz2 gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar.lz gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar.xz gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.tar.zst gsoc2013-empathy-1f1d6e7d226a3ab6d9af7ff9aae00b1b7d802394.zip |
Don't forget to reverse the glist of pending messages.
2007-08-06 Xavier Claessens <xclaesse@gmail.com>
* libempathy/empathy-tp-chat.c: Don't forget to reverse the glist of
pending messages.
* libempathy/empathy-tp-roomlist.c: Fix wrong room list names when
listing them.
svn path=/trunk/; revision=232
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r-- | libempathy/empathy-tp-chat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index 691d7a2f1..077afe36e 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -681,6 +681,7 @@ empathy_tp_chat_get_pendings (EmpathyTpChat *chat) g_value_array_free (message_struct); } + messages = g_list_reverse (messages); g_ptr_array_free (messages_list, TRUE); |