* src/RelLib.py, etc.: convert get_id to get_handle

svn: r3290
This commit is contained in:
Don Allingham
2004-07-28 02:29:07 +00:00
parent 01c169c0f4
commit 95e62181d3
100 changed files with 3559 additions and 3466 deletions

View File

@@ -52,9 +52,9 @@ class BaseModel(gtk.GenericTreeModel):
val = 0
keys = self.sort_keys()
for place_id in keys:
self.iter2path[place_id] = (val,)
self.path2iter[(val,)] = place_id
for place_handle in keys:
self.iter2path[place_handle] = (val,)
self.path2iter[(val,)] = place_handle
val += 1
def on_row_inserted(self,obj,path,iter):