* src/ListModel.py: change __connect_model back to connect_model

2007-07-27  Don Allingham  <don@gramps-project.org>


svn: r8781
This commit is contained in:
Don Allingham 2007-07-28 02:23:43 +00:00
parent 55a34e84bf
commit 43914bbe7b
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2007-07-27 Don Allingham <don@gramps-project.org>
* src/ListModel.py: change __connect_model back to connect_model
2007-07-27 Don Allingham <don@gramps-project.org>
* src/GrampsDbUtils/_GedcomParse.py: Handle broken gedcom, there
the TYPE field is specified, but has no value (Heredis 9)

View File

@ -85,7 +85,7 @@ class ListModel:
self.idmap = {}
self.__build_columns(dlist)
self.__connect_model()
self.connect_model()
if select_func:
self.selection.connect('changed', select_func)
@ -182,7 +182,7 @@ class ListModel:
self.selection.set_mode(self.mode)
self.sel_iter = None
def __connect_model(self):
def connect_model(self):
"""
Connects the model to the associated tree
"""