| 14 | {} |
| 15 | |
| 16 | void KDevDocumentSelection::select( const QModelIndex & index, |
| 17 | QItemSelectionModel::SelectionFlags command ) |
| 18 | { |
| 19 | if ( !index.parent().isValid() ) |
| 20 | QItemSelectionModel::select( index, NoUpdate ); |
| 21 | else |
| 22 | QItemSelectionModel::select( index, command ); |
| 23 | } |
| 24 | |
| 25 | void KDevDocumentSelection::select( const QItemSelection & selection, |
| 26 | QItemSelectionModel::SelectionFlags command ) |