]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlError.C
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / controllers / ControlError.C
1 /**
2  * \file ControlError.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13
14 #include "ControlError.h"
15 #include "insets/inseterror.h"
16
17
18 ControlError::ControlError(LyXView & lv, Dialogs & d)
19         : ControlInset<InsetError, string>(lv, d)
20 {}
21
22
23 string const ControlError::getParams(InsetError const & inset)
24 {
25         return inset.getContents();
26 }