| 1175 | } |
| 1176 | |
| 1177 | void ScriptCreatedComponentWrappers::ComboBoxWrapper::updateItems(HiComboBox * cb) |
| 1178 | { |
| 1179 | cb->clear(dontSendNotification); |
| 1180 | cb->addItemList(dynamic_cast<ScriptingApi::Content::ScriptComboBox*>(getScriptComponent())->getItemList(), 1); |
| 1181 | cb->rebuildPopupMenu(); |
| 1182 | |
| 1183 | auto currentValue = (int)getScriptComponent()->getValue(); |
| 1184 | cb->setSelectedId(currentValue, dontSendNotification); |
| 1185 | } |
| 1186 | |
| 1187 | void ScriptCreatedComponentWrappers::ComboBoxWrapper::updateColours(HiComboBox * cb) |
| 1188 | { |
nothing calls this directly
no test coverage detected