diff options
author | Jonathan Blandford <jrb@redhat.com> | 2002-03-13 04:23:50 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2002-03-13 04:23:50 +0000 |
commit | 166894bd8b77d45ace190a1b9ee1470f764b7beb (patch) | |
tree | 40229f14e2ab5878b8b3e67f8028ee17c21f8415 /gtk/gtktreeselection.c | |
parent | a498ae5ae2b1a2f606877f14bcb4eff17ae41cd6 (diff) | |
download | gtk+-166894bd8b77d45ace190a1b9ee1470f764b7beb.tar.gz |
Fix cut-n-paste bug.
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.
Diffstat (limited to 'gtk/gtktreeselection.c')
-rw-r--r-- | gtk/gtktreeselection.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |