diff options
Diffstat (limited to 'tdehtml/rendering')
-rw-r--r-- | tdehtml/rendering/render_box.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdehtml/rendering/render_box.cpp b/tdehtml/rendering/render_box.cpp index 85e1f6665..d804094ef 100644 --- a/tdehtml/rendering/render_box.cpp +++ b/tdehtml/rendering/render_box.cpp @@ -366,8 +366,8 @@ void RenderBox::paintRootBoxDecorations(PaintInfo& paintInfo, int _tx, int _ty) int bx = _tx - marginLeft(); int by = _ty - marginTop(); - int bw = QMAX(w + marginLeft() + marginRight() + borderLeft() + borderRight(), rw); - int bh = QMAX(h + marginTop() + marginBottom() + borderTop() + borderBottom(), rh); + int bw = TQMAX(w + marginLeft() + marginRight() + borderLeft() + borderRight(), rw); + int bh = TQMAX(h + marginTop() + marginBottom() + borderTop() + borderBottom(), rh); // CSS2 14.2: // " The background of the box generated by the root element covers the entire canvas." |