Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 160 |
- |
1 |
#include "qmreportdialog.h"
|
|
|
2 |
#include "ui_qmreportdialog.h"
|
|
|
3 |
|
|
|
4 |
QmReportDialog::QmReportDialog(QWidget *parent) :
|
|
|
5 |
QDialog(parent),
|
|
|
6 |
ui(new Ui::QmReportDialog)
|
|
|
7 |
{
|
|
|
8 |
ui->setupUi(this);
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
QmReportDialog::~QmReportDialog()
|
|
|
12 |
{
|
|
|
13 |
delete ui;
|
|
|
14 |
}
|