mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
remove debug code
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2906 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ba171ba664
commit
3d8efcecf9
@ -13,16 +13,14 @@
|
||||
|
||||
MathBoxInset::MathBoxInset(string const & name)
|
||||
: MathDimInset(), name_(name), text_(new InsetText), buffer_(0)
|
||||
{
|
||||
lyxerr << "creating new " << name << endl;
|
||||
}
|
||||
{}
|
||||
|
||||
|
||||
MathBoxInset::MathBoxInset(MathBoxInset const & m)
|
||||
: MathDimInset(*this), name_(m.name_), text_(0), buffer_(m.buffer_)
|
||||
{
|
||||
if (!m.buffer_)
|
||||
cerr << "no buffer\n";
|
||||
lyxerr << "no buffer\n";
|
||||
else
|
||||
text_ = static_cast<InsetText *>(m.text_->clone(*m.buffer_, false));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user