| 102 | } |
| 103 | |
| 104 | InvestigateProcessWindow::InvestigateProcessWindow(QWidget *parent) : |
| 105 | QWidget(parent), |
| 106 | ui(new Ui::InvestigateProcessWindow) |
| 107 | { |
| 108 | ui->setupUi(this); |
| 109 | |
| 110 | this->setFixedSize(QSize(930, 400)); |
| 111 | |
| 112 | InitializeProcessInfoTable(); |
| 113 | InitializeStackHistoryTable(this->ui->ProcessStackHistoryTable); |
| 114 | InitializeProcessImagesTable(); |
| 115 | InitializeStackHistoryTable(this->ui->ImageStackHistoryTable); |
| 116 | } |
| 117 | |
| 118 | InvestigateProcessWindow::~InvestigateProcessWindow() |
| 119 | { |
nothing calls this directly
no outgoing calls
no test coverage detected