| 311 | } |
| 312 | |
| 313 | void TabStructures::onHeaderClick(QTreeView *tree) |
| 314 | { |
| 315 | int& col = (tree == ui->treeStructs) ? sortcols : sortcolq; |
| 316 | int section = tree->header()->sortIndicatorSection(); |
| 317 | if (tree->header()->sortIndicatorOrder() == Qt::AscendingOrder && col == section) |
| 318 | { |
| 319 | tree->sortByColumn(-1, Qt::DescendingOrder); |
| 320 | section = -1; |
| 321 | } |
| 322 | col = section; |
| 323 | } |
| 324 | |
| 325 | void TabStructures::onAnalysisItemDone(QTreeWidgetItem *item) |
| 326 | { |
nothing calls this directly
no outgoing calls
no test coverage detected