fix 3 one line bugs in treebasemodel

svn: r14068
This commit is contained in:
Benny Malengier 2010-01-13 20:17:45 +00:00
parent 2a6c915dde
commit 63d9122ea2

View File

@ -150,7 +150,8 @@ class Node(object):
' not present in self.children: ' + str(self.children)\
+ ' at index ' + str(index)
if index == 0:
nodemap.node(self.children[index][1]).prev = None
if len(self.children) > 1:
nodemap.node(self.children[index+1][1]).prev = None
elif index == len(self.children)-1:
nodemap.node(self.children[index - 1][1]).next = None
else:
@ -604,6 +605,7 @@ class TreeBaseModel(gtk.GenericTreeModel):
path = self.on_get_path(node)
self.nodemap.node(node.parent).remove_child(node, self.nodemap)
del self.tree[node.ref]
if node.handle is not None:
del self.handle2node[node.handle]
self.nodemap.del_node(node)
del node