| 145 | } |
| 146 | |
| 147 | U32 GuiTextListCtrl::getSelectedId() |
| 148 | { |
| 149 | if (mSelectedCell.y == -1) |
| 150 | return InvalidId; |
| 151 | |
| 152 | return mList[mSelectedCell.y].id; |
| 153 | } |
| 154 | |
| 155 | U32 GuiTextListCtrl::getSelectedRow() |
| 156 | { |
no outgoing calls
no test coverage detected