]> git.lyx.org Git - features.git/commitdiff
remove debug output from last commit
authorAndré Pönitz <poenitz@gmx.net>
Thu, 8 Apr 2004 15:24:22 +0000 (15:24 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 8 Apr 2004 15:24:22 +0000 (15:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8634 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_decorationinset.C
src/mathed/math_macrotable.C
src/mathed/math_support.C

index ba9ab175c2a326094d4f66b384ef5eccf38d520d..2b1d87cadb576b0b17abf0203fa3a259ea50b338 100644 (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);
index 16ef1dbb9a0a04f07bb4ef005e935e9a67be3528..a671319cc45940d4d050d356a4a2a8d13d743855 100644 (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;
 }
 
index f1f979a9025a2ac3712ec09d471a9371918e3b9c..ea2ccd667d5061752cf5b3b035d2423b60fd9140 100644 (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];