summaryrefslogtreecommitdiffstats
path: root/ksvg/impl/SVGShapeImpl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ksvg/impl/SVGShapeImpl.cc')
-rw-r--r--ksvg/impl/SVGShapeImpl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksvg/impl/SVGShapeImpl.cc b/ksvg/impl/SVGShapeImpl.cc
index 68e89aaa..d8ef45c5 100644
--- a/ksvg/impl/SVGShapeImpl.cc
+++ b/ksvg/impl/SVGShapeImpl.cc
@@ -77,7 +77,7 @@ SVGRectImpl *SVGShapeImpl::getBBoxInternal()
SVGRectImpl *ret = SVGSVGElementImpl::createSVGRect();
if(m_item)
{
- QRect r = m_item->bbox();
+ TQRect r = m_item->bbox();
ret->setX(r.x());
ret->setY(r.y());
ret->setWidth(r.width());
@@ -86,7 +86,7 @@ SVGRectImpl *SVGShapeImpl::getBBoxInternal()
return ret;
}
-bool SVGShapeImpl::prepareMouseEvent(const QPoint &p, const QPoint &, SVGMouseEventImpl *mev)
+bool SVGShapeImpl::prepareMouseEvent(const TQPoint &p, const TQPoint &, SVGMouseEventImpl *mev)
{
// TODO : pointer-events should be stored here, not in SVGStylableImpl.
SVGStylableImpl *style = dynamic_cast<SVGStylableImpl *>(this);