]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QAboutDialog.C
This new citation dialog follows a new design similar to lyx-1.3:
[lyx.git] / src / frontends / qt4 / QAboutDialog.C
1 /**
2  * \file QAboutDialog.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Kalle Dalheimer
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "QAboutDialog.h"
14
15 namespace lyx {
16 namespace frontend {
17
18 QAboutDialog::QAboutDialog(QWidget * parent, const char * name,
19                            bool modal, Qt::WFlags fl)
20 {
21         setupUi(this);
22
23     connect( closePB, SIGNAL( clicked() ), this, SLOT( reject() ) );
24 }
25
26
27 QAboutDialog::~QAboutDialog()
28 {}
29
30 } // namespace frontend
31 } // namespace lyx