]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlError.C
Really dull and boring header shit
[lyx.git] / src / frontends / controllers / ControlError.C
1 /**
2  * \file ControlError.C
3  * Read the file COPYING
4  *
5  * \author Angus Leeming
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "ControlError.h"
17 #include "insets/inseterror.h"
18
19
20 ControlError::ControlError(LyXView & lv, Dialogs & d)
21         : ControlInset<InsetError, string>(lv, d)
22 {}
23
24
25 string const ControlError::getParams(InsetError const & inset)
26 {
27         return inset.getContents();
28 }