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 3cc4c95 commit 961ec37Copy full SHA for 961ec37
gramps/gen/db/generic.py
@@ -2684,7 +2684,19 @@ def db_has_bm_changes(self):
2684
def get_undodb(self):
2685
return self.undodb
2686
2687
- def undo(self, update_history=True):
+ def undo_reference(self, data, handle: AnyHandle):
2688
+ """
2689
+ Helper method to undo a reference map entry
2690
2691
+ raise NotImplementedError
2692
+
2693
+ def undo_data(self, data, handle: AnyHandle, obj_key):
2694
2695
+ Helper method to undo/redo the changes made
2696
2697
2698
2699
+ def undo(self, update_history: bool = True):
2700
return self.undodb.undo(update_history)
2701
2702
def redo(self, update_history=True):
0 commit comments