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 {
|
|
|
|
|
|
|
|
QAboutDialog::QAboutDialog(QWidget * parent, const char * name,
|
|
|
|
bool modal, Qt::WFlags fl)
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
2006-05-04 07:31:46 +00:00
|
|
|
connect( closePB, SIGNAL( clicked() ),
|
|
|
|
this, SLOT( reject() ) );
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QAboutDialog::~QAboutDialog()
|
|
|
|
{}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|