summaryrefslogtreecommitdiffstats
path: root/tdehtml/rendering
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-07 22:06:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-07 22:06:32 -0600
commit1b57c467057e040642368d099a9bb5ab63fe0be6 (patch)
treef7ff3413e0236fb4b1eee21c772e57e67f1bb870 /tdehtml/rendering
parent43636e0371d99c0e3d623a39dfde6f1f685968fe (diff)
downloadtdelibs-1b57c467057e040642368d099a9bb5ab63fe0be6.tar.gz
tdelibs-1b57c467057e040642368d099a9bb5ab63fe0be6.zip
Regenerate TDEHTML flex/bison/gperf generated files
Diffstat (limited to 'tdehtml/rendering')
-rw-r--r--tdehtml/rendering/bidi.cpp18
-rw-r--r--tdehtml/rendering/render_block.cpp10
2 files changed, 14 insertions, 14 deletions
diff --git a/tdehtml/rendering/bidi.cpp b/tdehtml/rendering/bidi.cpp
index 7916a9c4f..d9991c501 100644
--- a/tdehtml/rendering/bidi.cpp
+++ b/tdehtml/rendering/bidi.cpp
@@ -877,7 +877,7 @@ bool RenderBlock::clearLineOfPageBreaks(InlineFlowBox* lineBox)
lineBox->verticallyAlignBoxes(m_height);
}
#ifdef PAGE_DEBUG
- kdDebug(6040) << "Cleared line " << lineBox->yPos() - oldYPos << "px" << endl;
+ kdDebug(6040) << "Cleared line " << lineBox->yPos() << "px" << endl;
#endif
setContainsPageBreak(true);
}
@@ -1254,8 +1254,8 @@ void RenderBlock::bidiReorderLine(const BidiIterator &start, const BidiIterator
}
#if BIDI_DEBUG > 0
- kdDebug(6041) << "reached end of line current=" << current.obj << "/" << current.pos
- << ", eor=" << eor.obj << "/" << eor.pos << endl;
+// kdDebug(6041) << "reached end of line current=" << current.obj << "/" << current.pos
+// << ", eor=" << eor.obj << "/" << eor.pos << endl;
#endif
if ( !emptyRun && bidi.sor != bidi.current ) {
bidi.eor = bidi.last;
@@ -1286,10 +1286,10 @@ void RenderBlock::bidiReorderLine(const BidiIterator &start, const BidiIterator
#if BIDI_DEBUG > 0
kdDebug(6041) << "lineLow = " << (uint)levelLow << ", lineHigh = " << (uint)levelHigh << endl;
kdDebug(6041) << "logical order is:" << endl;
- TQPtrListIterator<BidiRun> it2(runs);
- BidiRun *r2;
- for ( ; (r2 = it2.current()); ++it2 )
- kdDebug(6041) << " " << r2 << " start=" << r2->start << " stop=" << r2->stop << " level=" << (uint)r2->level << endl;
+// TQPtrListIterator<BidiRun> it2(runs);
+// BidiRun *r2;
+// for ( ; (r2 = it2.current()); ++it2 )
+// kdDebug(6041) << " " << r2 << " start=" << r2->start << " stop=" << r2->stop << " level=" << (uint)r2->level << endl;
#endif
int count = sBidiRunCount - 1;
@@ -1318,8 +1318,8 @@ void RenderBlock::bidiReorderLine(const BidiIterator &start, const BidiIterator
#if BIDI_DEBUG > 0
kdDebug(6041) << "visual order is:" << endl;
- for (BidiRun* curr = sFirstRun; curr; curr = curr->nextRun)
- kdDebug(6041) << " " << curr << endl;
+// for (BidiRun* curr = sFirstRun; curr; curr = curr->nextRun)
+// kdDebug(6041) << " " << curr << endl;
#endif
}
diff --git a/tdehtml/rendering/render_block.cpp b/tdehtml/rendering/render_block.cpp
index 82d99cf41..593d5d8c0 100644
--- a/tdehtml/rendering/render_block.cpp
+++ b/tdehtml/rendering/render_block.cpp
@@ -26,11 +26,11 @@
*
*/
-//#define DEBUG
-//#define DEBUG_LAYOUT
-//#define BOX_DEBUG
-//#define FLOAT_DEBUG
-//#define PAGE_DEBUG
+// #define DEBUG
+// #define DEBUG_LAYOUT
+// #define BOX_DEBUG
+// #define FLOAT_DEBUG
+// #define PAGE_DEBUG
#include <kdebug.h>
#include "rendering/render_text.h"