2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \file QAboutDialog.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Kalle Dalheimer
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "QAboutDialog.h"
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2006-07-06 08:18:51 +00:00
|
|
|
QAboutDialog::QAboutDialog(QWidget * /*parent*/, char const * /*name*/,
|
|
|
|
bool /*modal*/, Qt::WFlags /*fl*/)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
2006-07-06 08:18:51 +00:00
|
|
|
connect( closePB, SIGNAL( clicked() ),
|
2006-05-04 07:31:46 +00:00
|
|
|
this, SLOT( reject() ) );
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QAboutDialog::~QAboutDialog()
|
|
|
|
{}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
|
|
#include "QAboutDialog_moc.cpp"
|