* @brief InvestigateProcessWindow::AddProcessInfoItem - Add a header item to the process info table. * @param HeaderName - Header name. */
| 81 | * @param HeaderName - Header name. |
| 82 | */ |
| 83 | void InvestigateProcessWindow::AddProcessInfoItem(std::string HeaderName) |
| 84 | { |
| 85 | this->ui->ProcessInformationTable->setRowCount(this->ProcessInfoTableSize + 1); |
| 86 | this->ui->ProcessInformationTable->setItem(this->ProcessInfoTableSize, 0, new QTableWidgetItem(QString::fromStdString(HeaderName))); |
| 87 | this->ProcessInfoTableSize++; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @brief InvestigateProcessWindow::UpdateWidget - Refresh stylesheet (Qt bug). |
nothing calls this directly
no outgoing calls
no test coverage detected