diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 11:53:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 13:56:43 +0900 |
commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/tqpoint.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqpoint.html')
-rw-r--r-- | doc/html/tqpoint.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tqpoint.html b/doc/html/tqpoint.html index f20c671b5..d0b85134d 100644 --- a/doc/html/tqpoint.html +++ b/doc/html/tqpoint.html @@ -99,9 +99,9 @@ approximation of the length of the TQPoint interpreted as a vector. <p> Example: <pre> //TQPoint oldPos is defined somewhere else - MyWidget::mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e ) + MyWidget::mouseMoveEvent( <a href="tqmouseevent.html">TQMouseEvent</a> *e ) { - TQPoint vector = e-><a href="qmouseevent.html#pos">pos</a>() - oldPos; + TQPoint vector = e-><a href="tqmouseevent.html#pos">pos</a>() - oldPos; if ( vector.<a href="#manhattanLength">manhattanLength</a>() > 3 ) ... //mouse has moved more than 3 pixels since oldPos } |