]> Pileus Git - ~andy/gtk/commitdiff
Fix cut-n-paste bug.
authorJonathan Blandford <jrb@redhat.com>
Wed, 13 Mar 2002 04:23:50 +0000 (04:23 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Wed, 13 Mar 2002 04:23:50 +0000 (04:23 +0000)
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.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktreeselection.c

index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index e40618d9f9749f714c724bb80389bcd283e71c7c..bdcf4a982c1e43f6804280a9cc7b9a0214f9c4c4 100644 (file)
@@ -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
index 2c93cd43509f7b3f2b8cc2a061998b8b698f14db..c93e375923539f2617d3044ddd5966b86aada051 100644 (file)
@@ -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);
 }