| 205 | } |
| 206 | |
| 207 | void EnvironmentWidget::removeSelectedVariables() |
| 208 | { |
| 209 | const auto selectedRows = ui.variableTable->selectionModel()->selectedRows(); |
| 210 | if (selectedRows.isEmpty()) { |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | QStringList variables; |
| 215 | variables.reserve(selectedRows.size()); |
| 216 | for (const auto& idx : selectedRows) { |
| 217 | const QString variable = idx.data(EnvironmentProfileModel::VariableRole).toString(); |
| 218 | variables << variable; |
| 219 | } |
| 220 | |
| 221 | m_environmentProfileModel->removeVariables(variables); |
| 222 | } |
| 223 | |
| 224 | void EnvironmentWidget::onVariableInserted(int column, const QVariant& value) |
| 225 | { |