2002-09-05 14:10:50 +00:00
|
|
|
/**
|
|
|
|
* \file ControlError.C
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-03-23 17:09:34 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author Angus Leeming
|
2001-03-23 17:09:34 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* Full author contact details are available in file CREDITS
|
2001-03-23 17:09:34 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include "ControlError.h"
|
2001-03-23 17:09:34 +00:00
|
|
|
#include "insets/inseterror.h"
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
ControlError::ControlError(LyXView & lv, Dialogs & d)
|
|
|
|
: ControlInset<InsetError, string>(lv, d)
|
2002-06-18 15:44:30 +00:00
|
|
|
{}
|
2001-03-23 17:09:34 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
string const ControlError::getParams(InsetError const & inset)
|
|
|
|
{
|
|
|
|
return inset.getContents();
|
|
|
|
}
|