| 132 | //----------------------------------------------------------------------------- |
| 133 | |
| 134 | void GuiArrayCtrl::onCellSelected(Point2I cell) |
| 135 | { |
| 136 | // [rene, 21-Jan-11 ] clashes with callbacks defined in derived classes |
| 137 | Con::executef(this, "onSelect", Con::getFloatArg(cell.x), Con::getFloatArg(cell.y)); |
| 138 | |
| 139 | onCellSelected_callback( cell ); |
| 140 | |
| 141 | //call the console function |
| 142 | execConsoleCallback(); |
| 143 | } |
| 144 | |
| 145 | //----------------------------------------------------------------------------- |
| 146 |
nothing calls this directly
no test coverage detected