| 693 | } |
| 694 | |
| 695 | void GuiGameListMenuCtrl::activateRow() |
| 696 | { |
| 697 | S32 row = getSelected(); |
| 698 | if ((row != NO_ROW) && isRowEnabled(row) && (mRows[row]->mScriptCallback != NULL)) |
| 699 | { |
| 700 | setThisControl(); |
| 701 | if (Con::isFunction(mRows[row]->mScriptCallback)) |
| 702 | { |
| 703 | Con::executef(mRows[row]->mScriptCallback); |
| 704 | } |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | S32 GuiGameListMenuCtrl::getRow(Point2I globalPoint) |
| 709 | { |
no test coverage detected