diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-03-06 19:53:45 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-03-06 19:53:45 +0800 |
commit | a30668610445b5f2b1a9f651a9338d8062834160 (patch) | |
tree | 85374e3e5d4f4e0de5320db919823699ab384584 /libempathy | |
parent | eb9197cd2f5067723120ac19d5303cd1748f79df (diff) | |
download | gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar.gz gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar.bz2 gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar.lz gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar.xz gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.tar.zst gsoc2013-empathy-a30668610445b5f2b1a9f651a9338d8062834160.zip |
Fix typo in a comment
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2623
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-log-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-log-manager.c b/libempathy/empathy-log-manager.c index c663fe594..e2423ebf2 100644 --- a/libempathy/empathy-log-manager.c +++ b/libempathy/empathy-log-manager.c @@ -299,7 +299,7 @@ empathy_log_manager_get_filtered_messages (EmpathyLogManager *manager, } else if (log_manager_message_date_cmp (new->data, out->data) > 0) { - /* This message is newer than the older message we have in out + /* This message is newer than the oldest message we have in out * list. Remove the head of out list and insert this message */ g_object_unref (out->data); out = g_list_delete_link (out, out); @@ -308,7 +308,7 @@ empathy_log_manager_get_filtered_messages (EmpathyLogManager *manager, } else { - /* This message is older than the older message we have in out + /* This message is older than the oldest message we have in out * list. Drop it. */ g_object_unref (new->data); } |