| 422 | } |
| 423 | |
| 424 | void LaunchConfigurationDialog::deleteConfiguration() |
| 425 | { |
| 426 | if( !tree->selectionModel()->selectedRows().isEmpty() ) |
| 427 | { |
| 428 | model->deleteConfiguration( tree->selectionModel()->selectedRows().first() ); |
| 429 | tree->resizeColumnToContents( 0 ); |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | void LaunchConfigurationDialog::updateNameLabel( LaunchConfiguration* l ) |
| 434 | { |
nothing calls this directly
no test coverage detected