/** * \file QError.C * Copyright 2001 the LyX Team * Read the file COPYING * * \author John Levon */ #include #include "QErrorDialog.h" #include "ControlError.h" #include "QError.h" #include "Qt2BC.h" #include "gettext.h" #include #include typedef Qt2CB > 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()); }