| 413 | } |
| 414 | |
| 415 | bool LayoutComboboxControl::setSelectionStringValue(BString value) { |
| 416 | for (int i = 0; i < (int)this->options.data.size(); i++) { |
| 417 | if (this->options.data[i].strValue == value) { |
| 418 | this->setSelection(i); |
| 419 | return true; |
| 420 | } |
| 421 | } |
| 422 | return false; |
| 423 | } |
| 424 | |
| 425 | bool LayoutComboboxControl::setSelectionIntValue(int value) { |
| 426 | for (int i = 0; i < (int)this->options.data.size(); i++) { |
no test coverage detected