summaryrefslogtreecommitdiffstats
path: root/doc/html/forever-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/forever-example.html')
-rw-r--r--doc/html/forever-example.html6
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
}