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

Method InitializeStackHistoryTable

PeaceMakerGUI/InvestigateProcessWindow.cpp:52–63  ·  view source on GitHub ↗

* @brief InvestigateProcessWindow::InitializeStackHistoryTable - Initialize properties for the stack history table. * @param historyTable - The stack history table to modify. */

Source from the content-addressed store, hash-verified

50 * @param historyTable - The stack history table to modify.
51 */
52void InvestigateProcessWindow::InitializeStackHistoryTable(QTableWidget* historyTable)
53{
54 QStringList headers;
55
56 historyTable->setColumnCount(1);
57 InitializeCommonTable(historyTable);
58
59 headers << "Stack Return Address";
60 historyTable->setHorizontalHeaderLabels(headers);
61 historyTable->setColumnWidth(0, 300);
62 historyTable->setWordWrap(true);
63}
64
65/**
66 * @brief InvestigateProcessWindow::InitializeProcessImagesTable - Initialize properties for the process images table.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected