| 20 | #include "IPProcessPropertiesWidget.h" |
| 21 | |
| 22 | IPProcessPropertiesWidget::IPProcessPropertiesWidget(QWidget *parent) : |
| 23 | QWidget(parent) |
| 24 | { |
| 25 | _mainWindow = NULL; |
| 26 | _processStep = NULL; |
| 27 | |
| 28 | // add settings to panel |
| 29 | QFormLayout* layout = new QFormLayout; |
| 30 | layout->setVerticalSpacing(0); |
| 31 | |
| 32 | setLayout(layout); |
| 33 | setBackgroundRole(QPalette::Midlight); |
| 34 | } |
| 35 | |
| 36 | IPProcessPropertiesWidget::~IPProcessPropertiesWidget() |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected