mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
883717e5ec
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2591 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
658 B
C
40 lines
658 B
C
/**
|
|
* \file QError.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QErrorDialog.h"
|
|
#include "ControlError.h"
|
|
#include "QError.h"
|
|
#include "Qt2BC.h"
|
|
#include "gettext.h"
|
|
|
|
#include <qtextview.h>
|
|
#include <qpushbutton.h>
|
|
|
|
typedef Qt2CB<ControlError, Qt2DB<QErrorDialog> > base_class;
|
|
|
|
QError::QError(ControlError & c)
|
|
: base_class(c, _("LaTeX Error"))
|
|
{
|
|
}
|
|
|
|
|
|
void QError::build_dialog()
|
|
{
|
|
dialog_.reset(new QErrorDialog(this));
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QError::update_contents()
|
|
{
|
|
dialog_->errorTV->setText(controller().params().c_str());
|
|
}
|