/** * \file ControlError.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Angus Leeming * * Full author contact details are available in file CREDITS */ #include #include "ControlError.h" ControlError::ControlError(Dialog & parent) : Dialog::Controller(parent) {} void ControlError::initialiseParams(string const & data) { params_ = data; } void ControlError::clearParams() { params_.erase(); }