blob: d8ff0ce138c9626e850f59aa5e5f2430a7818173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "deregisterform.h"
/*
* Constructs a DeregisterForm which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* true to construct a modal dialog.
*/
DeregisterForm::DeregisterForm(QWidget* parent)
: QDialog(parent)
{
setupUi(this);
}
/*
* Destroys the object and frees any allocated resources
*/
DeregisterForm::~DeregisterForm()
{
// no need to delete child widgets, Qt does it all for us
}
|