| 50 | } |
| 51 | |
| 52 | UndoAction::~UndoAction() |
| 53 | { |
| 54 | // If we are registered to an undo manager, make sure |
| 55 | // we get off its lists. |
| 56 | if( mUndoManager ) |
| 57 | mUndoManager->removeAction( this, true ); |
| 58 | |
| 59 | clearAllNotifications(); |
| 60 | } |
| 61 | |
| 62 | //----------------------------------------------------------------------------- |
| 63 | void UndoAction::initPersistFields() |
nothing calls this directly
no test coverage detected