diff options
author | Michele Calgaro <[email protected]> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/life-example.html | |
parent | 14c414378d96f7463b989384f4a0e5dd76632b6d (diff) | |
download | tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip |
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <[email protected]>
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 ); } |