fix misleading debug message

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26773 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-10-06 10:14:41 +00:00
parent 5b37720625
commit f993482628

View File

@ -1883,7 +1883,7 @@ bool Paragraph::latex(BufferParams const & bparams,
odocstream & os, TexRow & texrow,
OutputParams const & runparams) const
{
LYXERR(Debug::LATEX, "SimpleTeXOnePar... " << this);
LYXERR(Debug::LATEX, "Paragraph::latex... " << this);
bool return_value = false;
@ -2143,7 +2143,7 @@ bool Paragraph::latex(BufferParams const & bparams,
runparams);
}
LYXERR(Debug::LATEX, "SimpleTeXOnePar...done " << this);
LYXERR(Debug::LATEX, "Paragraph::latex... done " << this);
return return_value;
}