diff options
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 649d4d966..c7a81f38e 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -2389,7 +2389,6 @@ log_manager_got_dates_cb (GObject *manager, GtkTreeIter iter; GList *dates; GList *l; - GDate *date = NULL; GError *error = NULL; if (log_window == NULL) @@ -2416,19 +2415,24 @@ log_manager_got_dates_cb (GObject *manager, for (l = dates; l != NULL; l = l->next) { - gchar *text; + GDate *date = l->data; - date = l->data; - text = format_date_for_display (date); + /* Add the date if it's not already there */ + has_element = FALSE; + gtk_tree_model_foreach (model, model_has_date, date); + if (!has_element) + { + gchar *text = format_date_for_display (date); - gtk_list_store_append (store, &iter); - gtk_list_store_set (store, &iter, - COL_WHEN_DATE, date, - COL_WHEN_TEXT, text, - COL_WHEN_ICON, CALENDAR_ICON, - -1); + gtk_list_store_append (store, &iter); + gtk_list_store_set (store, &iter, + COL_WHEN_DATE, date, + COL_WHEN_TEXT, text, + COL_WHEN_ICON, CALENDAR_ICON, + -1); - g_free (text); + g_free (text); + } } if (gtk_tree_model_get_iter_first (model, &iter)) |