| 1482 | } |
| 1483 | |
| 1484 | PopupMenu* GuiMenuBar::findMenu(String barTitle) |
| 1485 | { |
| 1486 | for (U32 i = 0; i < mMenuList.size(); i++) |
| 1487 | { |
| 1488 | if (String::ToLower(mMenuList[i].text) == String::ToLower(barTitle)) |
| 1489 | return mMenuList[i].popupMenu; |
| 1490 | } |
| 1491 | |
| 1492 | return nullptr; |
| 1493 | } |
| 1494 | |
| 1495 | //----------------------------------------------------------------------------- |
| 1496 | // Console Methods |
no test coverage detected