MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / showThreadDetails

Method showThreadDetails

gui/mainwindow.cpp:2068–2080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2066}
2067
2068void 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
2082void MainWindow::filterResults()
2083{

Callers

nothing calls this directly

Calls 2

showMethod · 0.45

Tested by

no test coverage detected