]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormCopyrightDialog.C
add Lsstream.h
[lyx.git] / src / frontends / qt2 / FormCopyrightDialog.C
1 #include "FormCopyrightDialog.h"
2
3 /* 
4  *  Constructs a FormCopyrightDialog 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 FormCopyrightDialog::FormCopyrightDialog( QWidget* parent,  const char* name, bool modal, WFlags fl )
11     : FormCopyrightDialogBase( parent, name, modal, fl )
12 {
13 }
14
15 /*  
16  *  Destroys the object and frees any allocated resources
17  */
18 FormCopyrightDialog::~FormCopyrightDialog()
19 {
20     // no need to delete child widgets, Qt does it all for us
21 }
22