| 403 | } |
| 404 | |
| 405 | bool LayoutComboboxControl::setSelectionByLabel(BString label) { |
| 406 | for (int i = 0; i < (int)this->options.data.size(); i++) { |
| 407 | if (this->options.data[i].label == label) { |
| 408 | this->setSelection(i); |
| 409 | return true; |
| 410 | } |
| 411 | } |
| 412 | return false; |
| 413 | } |
| 414 | |
| 415 | bool LayoutComboboxControl::setSelectionStringValue(BString value) { |
| 416 | for (int i = 0; i < (int)this->options.data.size(); i++) { |
no test coverage detected