mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2bf1c09376
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23049 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
1.0 KiB
C++
58 lines
1.0 KiB
C++
/**
|
|
* \file MailInset.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "MailInset.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "frontends/Application.h"
|
|
|
|
#include "support/debug.h"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
|
|
void MailInset::showDialog(BufferView * bv) const
|
|
{
|
|
BOOST_ASSERT(bv);
|
|
bv->showDialog(name(), inset2string(bv->buffer()), &inset());
|
|
}
|
|
|
|
|
|
void MailInset::updateDialog(BufferView * bv) const
|
|
{
|
|
BOOST_ASSERT(bv);
|
|
bv->updateDialog(name(), inset2string(bv->buffer()));
|
|
}
|
|
|
|
|
|
void MailInset::hideDialog() const
|
|
{
|
|
if (theApp())
|
|
theApp()->hideDialogs(name(), &inset());
|
|
}
|
|
|
|
|
|
void print_mailer_error(string const & class_name,
|
|
string const & data, int arg_id, string const & arg)
|
|
{
|
|
LYXERR0('\n' << class_name << "::string2params(" << data << ")\n"
|
|
<< "Expected arg " << arg_id << " to be \"" << arg << "\"\n");
|
|
}
|
|
|
|
|
|
} // namespace lyx
|