| 2066 | } |
| 2067 | |
| 2068 | void MainWindow::showThreadDetails() |
| 2069 | { |
| 2070 | if (ThreadDetails::instance()) |
| 2071 | return; |
| 2072 | auto* threadDetails = new ThreadDetails(this); |
| 2073 | connect(mThread, &ThreadHandler::threadDetailsUpdated, |
| 2074 | threadDetails, &ThreadDetails::threadDetailsUpdated, Qt::QueuedConnection); |
| 2075 | connect(mThread, &ThreadHandler::progress, |
| 2076 | threadDetails, &ThreadDetails::progress, Qt::QueuedConnection); |
| 2077 | threadDetails->setAttribute(Qt::WA_DeleteOnClose); |
| 2078 | threadDetails->show(); |
| 2079 | mThread->emitThreadDetailsUpdated(); |
| 2080 | } |
| 2081 | |
| 2082 | void MainWindow::filterResults() |
| 2083 | { |
nothing calls this directly
no test coverage detected