| 385 | } |
| 386 | |
| 387 | void LaunchConfigurationDialog::saveConfig( const QModelIndex& idx ) |
| 388 | { |
| 389 | Q_UNUSED( idx ); |
| 390 | auto* tab = qobject_cast<LaunchConfigPagesContainer*>( stack->currentWidget() ); |
| 391 | if( tab ) |
| 392 | { |
| 393 | tab->save(); |
| 394 | buttonBox->button(QDialogButtonBox::Apply)->setEnabled( false ); |
| 395 | currentPageChanged = false; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | void LaunchConfigurationDialog::saveConfig() |
| 400 | { |
nothing calls this directly
no test coverage detected