| 134 | } |
| 135 | |
| 136 | void CustomBuildSystemConfigWidget::configChanged() |
| 137 | { |
| 138 | int idx = ui->currentConfig->currentIndex(); |
| 139 | if( idx >= 0 && idx < configs.count() ) { |
| 140 | configs[idx] = ui->configWidget->config(); |
| 141 | emit changed(); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | void CustomBuildSystemConfigWidget::changeCurrentConfig( int idx ) |
| 146 | { |
nothing calls this directly
no test coverage detected