]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QAboutDialog.C
enable Font cache only for MacOSX and inline width() for other platform.
[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*/, char const * /*name*/,
19                            bool /*modal*/, Qt::WFlags /*fl*/)
20 {
21         setupUi(this);
22
23         connect( closePB, SIGNAL( clicked() ),
24                 this, SLOT( reject() ) );
25 }
26
27
28 QAboutDialog::~QAboutDialog()
29 {}
30
31 } // namespace frontend
32 } // namespace lyx
33
34 #include "QAboutDialog_moc.cpp"