* @brief InvestigateProcessWindow::InitializeStackHistoryTable - Initialize properties for the stack history table. * @param historyTable - The stack history table to modify. */
| 50 | * @param historyTable - The stack history table to modify. |
| 51 | */ |
| 52 | void 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. |
nothing calls this directly
no outgoing calls
no test coverage detected