| 404 | } |
| 405 | |
| 406 | const char* UndoManager::getRedoName(S32 index) |
| 407 | { |
| 408 | if ((index < getRedoCount()) && (index >= 0)) |
| 409 | return mRedoStack[getRedoCount() - index - 1]->mActionName; |
| 410 | |
| 411 | return NULL; |
| 412 | } |
| 413 | |
| 414 | DefineEngineMethod(UndoManager, getRedoAction, S32, (S32 index), , "(index)") |
| 415 | { |