blob: 25ca43877dfb5df223155b093908f7a8179e643c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "lightingdlgbaseimpl.h"
/*
* Constructs a lightingdlgbase 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.
*/
lightingdlgbase::lightingdlgbase( QWidget* parent, const char* name, bool modal, WFlags fl )
: lightingdlgbaseBase( parent, name, modal, fl )
{
}
/*
* Destroys the object and frees any allocated resources
*/
lightingdlgbase::~lightingdlgbase()
{
// no need to delete child widgets, Qt does it all for us
}
|