diff options
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 } |