We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d523929 commit 8507f17Copy full SHA for 8507f17
gramps/gen/db/generic.py
@@ -2648,7 +2648,19 @@ def db_has_bm_changes(self):
2648
def get_undodb(self):
2649
return self.undodb
2650
2651
- def undo(self, update_history=True):
+ def undo_reference(self, data, handle: AnyHandle):
2652
+ """
2653
+ Helper method to undo a reference map entry
2654
2655
+ raise NotImplementedError
2656
+
2657
+ def undo_data(self, data, handle: AnyHandle, obj_key):
2658
2659
+ Helper method to undo/redo the changes made
2660
2661
2662
2663
+ def undo(self, update_history: bool = True):
2664
return self.undodb.undo(update_history)
2665
2666
def redo(self, update_history=True):
0 commit comments