| 1027 | } |
| 1028 | |
| 1029 | void GuiGameListMenuCtrl::clearRows() |
| 1030 | { |
| 1031 | for (U32 i = 0; i < mRows.size(); i++) |
| 1032 | { |
| 1033 | if (mRows[i]->mBitmap != StringTable->EmptyString()) |
| 1034 | mRows[i]->mBitmapTex = nullptr; |
| 1035 | } |
| 1036 | |
| 1037 | mRows.clear(); |
| 1038 | setSelected(-1); |
| 1039 | setHeight(mMinExtent.y); |
| 1040 | } |
| 1041 | |
| 1042 | void GuiGameListMenuCtrl::refresh() |
| 1043 | { |
no test coverage detected