| 28 | #include "soundfontmanager.h" |
| 29 | |
| 30 | DialogCreateElements::DialogCreateElements(QWidget *parent) : |
| 31 | QDialog(parent), |
| 32 | ui(new Ui::DialogCreateElements) |
| 33 | { |
| 34 | ui->setupUi(this); |
| 35 | this->setAttribute(Qt::WA_DeleteOnClose); |
| 36 | this->setWindowFlags((windowFlags() & ~Qt::WindowContextHelpButtonHint)); |
| 37 | } |
| 38 | |
| 39 | DialogCreateElements::~DialogCreateElements() |
| 40 | { |
nothing calls this directly
no test coverage detected