2001-08-26 18:49:33 +00:00
|
|
|
/**
|
|
|
|
* \file QErrorDialog.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-26 18:49:33 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-26 18:49:33 +00:00
|
|
|
*/
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include <config.h>
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
#include "QError.h"
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
#include <qwidget.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "QErrorDialog.h"
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
QErrorDialog::QErrorDialog(QError * form)
|
|
|
|
: QErrorDialogBase(0, 0, false, 0),
|
|
|
|
form_(form)
|
|
|
|
{
|
|
|
|
connect(closePB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotClose()));
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
void QErrorDialog::closeEvent(QCloseEvent * e)
|
|
|
|
{
|
|
|
|
form_->slotWMHide();
|
|
|
|
e->accept();
|
|
|
|
}
|