diff options
Diffstat (limited to 'doc/html/life-example.html')
-rw-r--r-- | doc/html/life-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/life-example.html b/doc/html/life-example.html index d716e9b67..8e27da5e6 100644 --- a/doc/html/life-example.html +++ b/doc/html/life-example.html @@ -71,7 +71,7 @@ protected: virtual void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); virtual void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); virtual void resizeEvent( <a href="qresizeevent.html">TQResizeEvent</a> * ); - void mouseHandle( const <a href="ntqpoint.html">TQPoint</a> &pos ); + void mouseHandle( const <a href="tqpoint.html">TQPoint</a> &pos ); private: enum { MAXSIZE = 50, MINSIZE = 10, BORDER = 5 }; @@ -168,10 +168,10 @@ void <a name="f519"></a>LifeWidget::setPoint( int i, int j ) } -void <a name="f520"></a>LifeWidget::mouseHandle( const <a href="ntqpoint.html">TQPoint</a> &pos ) +void <a name="f520"></a>LifeWidget::mouseHandle( const <a href="tqpoint.html">TQPoint</a> &pos ) { -<a name="x1893"></a> int i = pos2index( pos.<a href="ntqpoint.html#x">x</a>() ); -<a name="x1894"></a> int j = pos2index( pos.<a href="ntqpoint.html#y">y</a>() ); +<a name="x1893"></a> int i = pos2index( pos.<a href="tqpoint.html#x">x</a>() ); +<a name="x1894"></a> int j = pos2index( pos.<a href="tqpoint.html#y">y</a>() ); setPoint( i, j ); } |