summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@src.gnome.org>2002-05-23 15:31:41 +0000
committerJonathan Blandford <jrb@src.gnome.org>2002-05-23 15:31:41 +0000
commit4794f2b309222fe86bb1c40f133a574bcf1f4524 (patch)
tree253dbf2acf470b701b89ee784a185d5f07c93ff9
parent6fe89cc83af839189be588a29d9b921afa86e40f (diff)
downloadgdk-pixbuf-4794f2b309222fe86bb1c40f133a574bcf1f4524.tar.gz
revert last change until I am more sure of it
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtktreeview.c8
7 files changed, 2 insertions, 36 deletions
diff --git a/ChangeLog b/ChangeLog
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 7acf7f2b6..ac6a26ab2 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,8 +1,3 @@
-Thu May 23 11:08:09 2002 Jonathan Blandford <jrb@redhat.com>
-
- * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Check the
- parentage of a newly inserted node.
-
2002-05-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Use correct path to the loaders and immodules
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index a2fd216ad..308e10154 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -5741,7 +5741,6 @@ gtk_tree_view_row_inserted (GtkTreeModel *model,
gint *indices;
GtkRBTree *tmptree, *tree;
GtkRBNode *tmpnode = NULL;
- GtkRBNode *newnode = NULL;
gint depth;
gint i = 0;
gboolean free_path = FALSE;
@@ -5810,17 +5809,14 @@ gtk_tree_view_row_inserted (GtkTreeModel *model,
if (indices[depth - 1] == 0)
{
tmpnode = _gtk_rbtree_find_count (tree, 1);
- newnode = _gtk_rbtree_insert_before (tree, tmpnode, 0, FALSE);
+ _gtk_rbtree_insert_before (tree, tmpnode, 0, FALSE);
}
else
{
tmpnode = _gtk_rbtree_find_count (tree, indices[depth - 1]);
- newnode = _gtk_rbtree_insert_after (tree, tmpnode, 0, FALSE);
+ _gtk_rbtree_insert_after (tree, tmpnode, 0, FALSE);
}
- if (gtk_tree_model_iter_has_child (tree_view->priv->model, iter))
- GTK_RBNODE_SET_FLAG (newnode, GTK_RBNODE_IS_PARENT);
-
done:
install_presize_handler (tree_view);
if (free_path)