| 274 | } |
| 275 | |
| 276 | String PopupMenu::getItemText(S32 pos) |
| 277 | { |
| 278 | if (mMenuItems.empty() || mMenuItems.size() < pos || pos < 0) |
| 279 | return String::EmptyString; |
| 280 | |
| 281 | return mMenuItems[pos].mText; |
| 282 | } |
| 283 | |
| 284 | ////////////////////////////////////////////////////////////////////////// |
| 285 | bool PopupMenu::canHandleID(U32 id) |
no test coverage detected