diff --git a/ChangeLog b/ChangeLog index 61273af853..0a4e21fe42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 61273af853..0a4e21fe42 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Thu Mar 7 21:32:01 2002 Kristian Rietveld + + * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed): increase + value of new_location by one if cmp_a > 0 and we hit the end of + the list. + Thu Mar 7 10:31:57 2002 Owen Taylor * gtk/gtknotebook.c (gtk_notebook_timer): Fix problem where diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c index 5b52b7437f..17e2ea6445 100644 --- a/gtk/gtktreestore.c +++ b/gtk/gtktreestore.c @@ -2056,6 +2056,7 @@ gtk_tree_store_sort_iter_changed (GtkTreeStore *tree_store, if ((!node->next) && (cmp_a > 0)) { + new_location++; node->next = G_NODE (iter->user_data); node->next->prev = node; }