+2004-09-08 Maciej Stachowiak <mjs@apple.com>
+
+ - fixed deployment build problems noticed by Grant
+
+ * khtml/rendering/render_flow.cpp:
+ (RenderFlow::caretRect):
+ * khtml/rendering/render_text.cpp:
+ (RenderText::caretRect):
+
2004-09-08 David Hyatt <hyatt@apple.com>
Fix XML so that elements with no namespace never make HTML elements (when their names coincidentally match).
return QRect(-1, -1, 1, -1);
}
- int _x, _y, width, height;
+ int _x, _y, height;
height = box->root()->bottomOverflow() - box->root()->topOverflow();
_y = box->root()->topOverflow();
_x += absx;
_y += absy;
- return QRect(_x, _y, width, height);
+ return QRect(_x, _y, 1, height);
}
void RenderText::posOfChar(int chr, int &x, int &y)