]> git.lyx.org Git - lyx.git/blob - src/insets/MailInset.cpp
Fix this bug:
[lyx.git] / src / insets / MailInset.cpp
1 /**
2  * \file MailInset.cpp
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 #include "MailInset.h"
14
15 #include "BufferView.h"
16 #include "debug.h"
17 #include "LyX.h"
18
19 #include "frontends/Dialogs.h"
20
21
22 namespace lyx {
23
24 using std::string;
25
26
27 void MailInset::showDialog(BufferView * bv) const
28 {
29         BOOST_ASSERT(bv);
30         bv->showInsetDialog(name(), inset2string(*bv->buffer()),
31                                        &inset());
32 }
33
34
35 void MailInset::updateDialog(BufferView * bv) const
36 {
37         BOOST_ASSERT(bv);
38         bv->updateDialog(name(), inset2string(*bv->buffer()));
39 }
40
41
42 void MailInset::hideDialog() const
43 {
44         LyX::cref().hideDialogs(name(), &inset());
45 }
46
47
48 void print_mailer_error(string const & class_name,
49                         string const & data, int arg_id, string const & arg)
50 {
51         lyxerr << '\n' << class_name << "::string2params(" << data << ")\n"
52                << "Expected arg " << arg_id << " to be \"" << arg << "\"\n"
53                << std::endl;
54 }
55
56
57 } // namespace lyx