| 91 | } |
| 92 | |
| 93 | void UndoManager::GetShortDescription(unsigned int n, TranslatableString *desc) |
| 94 | { |
| 95 | wxASSERT(n < stack.size()); |
| 96 | |
| 97 | *desc = stack[n]->shortDescription; |
| 98 | } |
| 99 | |
| 100 | void UndoManager::SetLongDescription( |
| 101 | unsigned int n, const TranslatableString &desc) |
no test coverage detected