| 412 | } |
| 413 | |
| 414 | void LaunchConfigurationDialog::modelChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) |
| 415 | { |
| 416 | if (tree->selectionModel()) |
| 417 | { |
| 418 | QModelIndex index = tree->selectionModel()->selectedRows().first(); |
| 419 | if (index.row() >= topLeft.row() && index.row() <= bottomRight.row() && bottomRight.column() == 1) |
| 420 | selectionChanged(tree->selectionModel()->selection(), tree->selectionModel()->selection()); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | void LaunchConfigurationDialog::deleteConfiguration() |
| 425 | { |