summaryrefslogtreecommitdiffstats
path: root/doc/html/qlayoutiterator.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qlayoutiterator.html')
-rw-r--r--doc/html/qlayoutiterator.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qlayoutiterator.html b/doc/html/qlayoutiterator.html
index 5e36da551..1f8aad459 100644
--- a/doc/html/qlayoutiterator.html
+++ b/doc/html/qlayoutiterator.html
@@ -67,7 +67,7 @@ same layout.
<p> The following code will draw a rectangle for each layout item in
the layout structure of the widget.
<pre>
- static void paintLayout( <a href="ntqpainter.html">TQPainter</a> *p, TQLayoutItem *lay )
+ static void paintLayout( <a href="tqpainter.html">TQPainter</a> *p, TQLayoutItem *lay )
{
TQLayoutIterator it = lay-&gt;iterator();
<a href="qlayoutitem.html">TQLayoutItem</a> *child;
@@ -75,11 +75,11 @@ the layout structure of the widget.
paintLayout( p, child );
++it;
}
- p-&gt;<a href="ntqpainter.html#drawRect">drawRect</a>( lay-&gt;geometry() );
+ p-&gt;<a href="tqpainter.html#drawRect">drawRect</a>( lay-&gt;geometry() );
}
- void ExampleWidget::paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * )
+ void ExampleWidget::paintEvent( <a href="tqpaintevent.html">TQPaintEvent</a> * )
{
- <a href="ntqpainter.html">TQPainter</a> p( this );
+ <a href="tqpainter.html">TQPainter</a> p( this );
if ( layout() )
paintLayout( &amp;p, layout() );
}