| 1447 | |
| 1448 | |
| 1449 | void MainWindow::onTabSetMainTree(int tab_index) |
| 1450 | { |
| 1451 | for (int i=0; i<ui->tabWidget->count(); i++ ) |
| 1452 | { |
| 1453 | if( i == tab_index ) |
| 1454 | { |
| 1455 | ui->tabWidget->tabBar()->setTabIcon(i, QIcon(":/icons/svg/star.svg") ); |
| 1456 | _main_tree = ui->tabWidget->tabBar()->tabText(i); |
| 1457 | } |
| 1458 | else{ |
| 1459 | ui->tabWidget->tabBar()->setTabIcon( i, QIcon()); |
| 1460 | } |
| 1461 | } |
| 1462 | } |
| 1463 | |
| 1464 | |
| 1465 | void MainWindow::clearTreeModels() |
nothing calls this directly
no outgoing calls
no test coverage detected