]> git.lyx.org Git - lyx.git/blobdiff - src/insets/mailinset.C
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / mailinset.C
index c7861f0f7e9dee2fc05b4a9f6df9fbe5609bdf29..6c63619af52f51b1e16eec042263f3d715268c1d 100644 (file)
 #include "mailinset.h"
 
 #include "BufferView.h"
+#include "debug.h"
 
 #include "frontends/Dialogs.h"
 #include "frontends/LyXView.h"
 
+using std::string;
+
 
 void MailInset::showDialog(BufferView * bv) const
 {
@@ -29,7 +32,7 @@ void MailInset::showDialog(BufferView * bv) const
 void MailInset::updateDialog(BufferView * bv) const
 {
        BOOST_ASSERT(bv);
-       if(bv->owner()->getDialogs().visible(name()))
+       if (bv->owner()->getDialogs().visible(name()))
                bv->owner()->getDialogs().update(name(),
                                                 inset2string(*bv->buffer()));
 }
@@ -39,3 +42,12 @@ void MailInset::hideDialog() const
 {
        Dialogs::hide(name(), &inset());
 }
+
+
+void print_mailer_error(string const & class_name,
+                       string const & data, int arg_id, string const & arg)
+{
+       lyxerr << '\n' << class_name << "::string2params(" << data << ")\n"
+              << "Expected arg " << arg_id << " to be \"" << arg << "\"\n"
+              << std::endl;
+}