]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormCopyrightDialogImpl.C
First attempt at converting copyright dialog to MVC architecture
[lyx.git] / src / frontends / qt2 / FormCopyrightDialogImpl.C
1 #include "FormCopyrightDialogImpl.h"
2
3 /*
4  *  Constructs a FormCopyrightDialogImpl which is a child of 'parent', with the
5  *  name 'name' and widget flags set to 'f'
6  *
7  *  The dialog will by default be modeless, unless you set 'modal' to
8  *  TRUE to construct a modal dialog.
9  */
10 FormCopyrightDialogImpl::FormCopyrightDialogImpl( QWidget* parent,  const char* name, bool modal, WFlags fl )
11     : FormCopyrightDialog( parent, name, modal, fl )
12 {
13 }
14
15 /*
16  *  Destroys the object and frees any allocated resources
17  */
18 FormCopyrightDialogImpl::~FormCopyrightDialogImpl()
19 {
20     // no need to delete child widgets, Qt does it all for us
21 }
22