]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlError.C
Nothing but a changed email address (trying to factor my tree in in small steps)
[lyx.git] / src / frontends / controllers / ControlError.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2001 The LyX Team.
7  *
8  * ======================================================
9  *
10  * \file ControlError.C
11  * \author Angus Leeming <leeming@lyx.org>
12  */
13
14 #include <config.h>
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include "ControlError.h"
21 #include "insets/inseterror.h"
22
23
24 ControlError::ControlError(LyXView & lv, Dialogs & d)
25         : ControlInset<InsetError, string>(lv, d)
26 {}
27
28
29 string const ControlError::getParams(InsetError const & inset)
30 {
31         return inset.getContents();
32 }