Replace get_family_handles with iter_family_handles

svn: r12776
This commit is contained in:
Gerald Britton
2009-07-08 16:11:20 +00:00
parent f680992d04
commit b601f4bdf2
21 changed files with 53 additions and 29 deletions

View File

@@ -251,7 +251,7 @@ class GrampsDbXmlWriter(UpdateCallback):
if family_len > 0:
self.g.write(" <families>\n")
for handle in self.db.get_family_handles():
for handle in self.db.iter_family_handles():
family = self.db.get_family_from_handle(handle)
self.write_family(family,2)
self.update()