MCPcopy Create free account
hub / github.com/D4stiny/PeaceMaker / AddProcessInfoItem

Method AddProcessInfoItem

PeaceMakerGUI/InvestigateProcessWindow.cpp:83–88  ·  view source on GitHub ↗

* @brief InvestigateProcessWindow::AddProcessInfoItem - Add a header item to the process info table. * @param HeaderName - Header name. */

Source from the content-addressed store, hash-verified

81 * @param HeaderName - Header name.
82 */
83void 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).

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected