| 1017 | } |
| 1018 | |
| 1019 | void TempVarOutputMappingsWidget::PopulateTempVarCombo( |
| 1020 | FilterComboBox *combo) const |
| 1021 | { |
| 1022 | if (!_segment) { |
| 1023 | return; |
| 1024 | } |
| 1025 | for (const auto &var : _segment->GetOwnTempVars()) { |
| 1026 | QVariant v; |
| 1027 | v.setValue(var.GetRef()); |
| 1028 | combo->addItem(QString::fromStdString(var.Name()), v); |
| 1029 | } |
| 1030 | } |
| 1031 | |
| 1032 | } // namespace advss |
nothing calls this directly
no test coverage detected