* src/DisplayModels.py: gobject.TYPE_STRING -> str

* src/EditFamily.py: privacy widget
* src/EditPerson.py: privacy widget
* src/EventEdit.py: save support
* src/GrampsWidgets.py: Add PrivacyButton support
* src/PageView.py: make sure active before updating rows
* src/edit_person.glade: privacy icons
* src/gramps.glade: privacy icons


svn: r5895
This commit is contained in:
Don Allingham
2006-02-08 05:08:28 +00:00
parent 4a8f8e3cd6
commit bc81ae7f5f
9 changed files with 337 additions and 370 deletions

View File

@@ -126,7 +126,6 @@ class BaseModel(gtk.GenericTreeModel):
def delete_row_by_handle(self,handle):
index = self.indexlist[handle]
self.indexlist = {}
self.datalist = []
i = 0
@@ -157,7 +156,7 @@ class BaseModel(gtk.GenericTreeModel):
def on_get_column_type(self,index):
if index == self.tooltip_column:
return object
return gobject.TYPE_STRING
return str
def on_get_iter(self, path):
try: