summaryrefslogtreecommitdiffstats
path: root/doc/html/tqcanvasview.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqcanvasview.html')
-rw-r--r--doc/html/tqcanvasview.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tqcanvasview.html b/doc/html/tqcanvasview.html
index 97d7d5b6c..a8443eef7 100644
--- a/doc/html/tqcanvasview.html
+++ b/doc/html/tqcanvasview.html
@@ -66,9 +66,9 @@ subclass TQCanvasView. You might then reimplement
<a href="tqscrollview.html#contentsMousePressEvent">TQScrollView::contentsMousePressEvent</a>(). For example, assuming no
<a href="tqwmatrix.html#TransformationMode">transformation matrix</a> is set:
<p> <pre>
- void MyCanvasView::contentsMousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a>* e )
+ void MyCanvasView::contentsMousePressEvent( <a href="tqmouseevent.html">TQMouseEvent</a>* e )
{
- <a href="tqcanvasitemlist.html">TQCanvasItemList</a> l = <a href="#canvas">canvas</a>()-&gt;collisions(e-&gt;<a href="qmouseevent.html#pos">pos</a>());
+ <a href="tqcanvasitemlist.html">TQCanvasItemList</a> l = <a href="#canvas">canvas</a>()-&gt;collisions(e-&gt;<a href="tqmouseevent.html#pos">pos</a>());
for (TQCanvasItemList::Iterator it=l.<a href="tqvaluelist.html#begin">begin</a>(); it!=l.<a href="tqvaluelist.html#end">end</a>(); ++it) {
if ( (*it)-&gt;rtti() == TQCanvasRectangle::RTTI )
<a href="ntqapplication.html#qDebug">tqDebug</a>("A TQCanvasRectangle lies somewhere at this point");