diff options
author | Michele Calgaro <[email protected]> | 2024-09-04 11:53:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-04 13:56:43 +0900 |
commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/tqcanvasview.html | |
parent | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff) | |
download | tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip |
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/tqcanvasview.html')
-rw-r--r-- | doc/html/tqcanvasview.html | 4 |
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>()->collisions(e-><a href="qmouseevent.html#pos">pos</a>()); + <a href="tqcanvasitemlist.html">TQCanvasItemList</a> l = <a href="#canvas">canvas</a>()->collisions(e-><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)->rtti() == TQCanvasRectangle::RTTI ) <a href="ntqapplication.html#qDebug">tqDebug</a>("A TQCanvasRectangle lies somewhere at this point"); |