| 23 | #include "MainWindow.h" |
| 24 | |
| 25 | SettingsWindow::SettingsWindow(MainWindow *mainWindow) : |
| 26 | QDialog((QWidget*)mainWindow), |
| 27 | ui(new Ui::SettingsWindow) |
| 28 | { |
| 29 | ui->setupUi(this); |
| 30 | |
| 31 | _mainWindow = mainWindow; |
| 32 | |
| 33 | // hide plugin list, use the one in the process library instead |
| 34 | this->ui->grpPlugins->hide(); |
| 35 | } |
| 36 | |
| 37 | SettingsWindow::~SettingsWindow() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected