2006-05-05 Alex Roitman <shura@gramps-project.org>

* src/GrampsDb/_GrampsDbBase.py (undo, redo): Add repository map
	to the tuple of tables.



svn: r6560
This commit is contained in:
Alex Roitman 2006-05-06 04:48:30 +00:00
parent 56a3b7ef20
commit fee0af9a4d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-05-05 Alex Roitman <shura@gramps-project.org>
* src/GrampsDb/_GrampsDbBase.py (undo, redo): Add repository map
to the tuple of tables.
2006-05-05 Don Allingham <don@gramps-project.org>
* src/DateEdit.py: ManagedWindow
* src/Editors/_EditAddress.py: new DateEdit interface

View File

@ -1317,7 +1317,8 @@ class GrampsDbBase(GrampsDBCallback):
transaction = self.translist[self.undoindex]
mapbase = (self.person_map, self.family_map, self.source_map,
self.event_map, self.media_map, self.place_map)
self.event_map, self.media_map, self.place_map,
self.repository_map)
self.undoindex -= 1
subitems = transaction.get_recnos()
@ -1362,7 +1363,8 @@ class GrampsDbBase(GrampsDBCallback):
self.undoindex += 1
mapbase = (self.person_map, self.family_map, self.source_map,
self.event_map, self.media_map, self.place_map)
self.event_map, self.media_map, self.place_map,
self.repository_map)
subitems = transaction.get_recnos()
for record_id in subitems: