diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/forever-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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/forever-example.html')
-rw-r--r-- | doc/html/forever-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/forever-example.html b/doc/html/forever-example.html index 6c08b1648..f518ecc99 100644 --- a/doc/html/forever-example.html +++ b/doc/html/forever-example.html @@ -148,10 +148,10 @@ void <a name="f366"></a>Forever::updateCaption() paint.<a href="tqpainter.html#setPen">setPen</a>( NoPen ); // do not draw outline paint.<a href="tqpainter.html#setBrush">setBrush</a>( colors[rand() % numColors]);// set random brush color - <a href="ntqpoint.html">TQPoint</a> p1( rand()%w, rand()%h ); // p1 = top left - <a href="ntqpoint.html">TQPoint</a> p2( rand()%w, rand()%h ); // p2 = bottom right + <a href="tqpoint.html">TQPoint</a> p1( rand()%w, rand()%h ); // p1 = top left + <a href="tqpoint.html">TQPoint</a> p2( rand()%w, rand()%h ); // p2 = bottom right - <a href="ntqrect.html">TQRect</a> r( p1, p2 ); + <a href="tqrect.html">TQRect</a> r( p1, p2 ); paint.<a href="tqpainter.html#drawRect">drawRect</a>( r ); // draw filled rectangle } |