| 136 | } |
| 137 | |
| 138 | std::string DropdownList::GetLabel(int val) const |
| 139 | { |
| 140 | for (int i = 0; i < mElements.size(); ++i) |
| 141 | { |
| 142 | if (mElements[i].mValue == val) |
| 143 | return mElements[i].mLabel; |
| 144 | } |
| 145 | return ""; |
| 146 | } |
| 147 | |
| 148 | void DropdownList::Poll() |
| 149 | { |
no test coverage detected