remove debug output from last commit

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8634 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2004-04-08 15:24:22 +00:00
parent 4dd07b9d68
commit 16da692bfb
3 changed files with 2 additions and 13 deletions

View File

@ -18,8 +18,6 @@
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "debug.h"
#include "support/std_ostream.h"
using std::auto_ptr;
@ -110,7 +108,6 @@ void MathDecorationInset::metrics(MetricsInfo & mi, Dimension & dim) const
void MathDecorationInset::draw(PainterInfo & pi, int x, int y) const
{
lyxerr << "MathDecorationInset::draw: x: " << x << std::endl;
cell(0).draw(pi, x + 1, y);
if (wide())
mathed_draw_deco(pi, x + 1, y + dy_, cell(0).width(), dh_, key_->name);

View File

@ -52,8 +52,8 @@ MathAtom & MathMacroTable::provide(string const & name)
void MathMacroTable::create(MathAtom const & at)
{
lyxerr << "MathMacroTable::create: '"
<< at->asMacroTemplate()->name() << "'" << endl;
//lyxerr << "MathMacroTable::create: '"
// << at->asMacroTemplate()->name() << "'" << endl;
macro_table[at->asMacroTemplate()->name()] = at;
}

View File

@ -458,14 +458,6 @@ void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
int(x + xx + 0.5), int(y + yy + 0.5),
int(x + x2 + 0.5), int(y + y2 + 0.5),
LColor::math);
lyxerr << "drew line "
<< "xx=" << xx << ", yy=" << yy
<< ", x2 = " << x2 << ", y2 = " << y2 << '\n'
<< int(x + xx + 0.5) << ", "
<< int(y + yy + 0.5) << ", "
<< int(x + x2 + 0.5) << ", "
<< int(y + y2 + 0.5) << std::endl;
} else {
int xp[32];
int yp[32];