diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtktreeselection.c | 2 |
8 files changed, 36 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index e40618d9f9..bdcf4a982c 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Tue Mar 12 23:14:23 2002 Jonathan Blandford <jrb@redhat.com> + + * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix + cut-n-paste bug. + Sat Mar 9 18:23:25 2002 Richard Hestilow <hestilow@ximian.com> * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL diff --git a/gtk/gtktreeselection.c b/gtk/gtktreeselection.c index 2c93cd4350..c93e375923 100644 --- a/gtk/gtktreeselection.c +++ b/gtk/gtktreeselection.c @@ -634,7 +634,7 @@ gtk_tree_selection_unselect_iter (GtkTreeSelection *selection, if (path == NULL) return; - gtk_tree_selection_select_path (selection, path); + gtk_tree_selection_unselect_path (selection, path); gtk_tree_path_free (path); } |