diff options
Diffstat (limited to 'doc/html/qlayoutiterator.html')
-rw-r--r-- | doc/html/qlayoutiterator.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qlayoutiterator.html b/doc/html/qlayoutiterator.html index d60423df1..5e36da551 100644 --- a/doc/html/qlayoutiterator.html +++ b/doc/html/qlayoutiterator.html @@ -33,7 +33,7 @@ body { background: #ffffff; color: black; } <p>The TQLayoutIterator class provides iterators over TQLayoutItem. <a href="#details">More...</a> -<p><tt>#include <<a href="qlayout-h.html">qlayout.h</a>></tt> +<p><tt>#include <<a href="qlayout-h.html">ntqlayout.h</a>></tt> <p><a href="qlayoutiterator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -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="qpainter.html">TQPainter</a> *p, TQLayoutItem *lay ) + static void paintLayout( <a href="ntqpainter.html">TQPainter</a> *p, TQLayoutItem *lay ) { TQLayoutIterator it = lay->iterator(); <a href="qlayoutitem.html">TQLayoutItem</a> *child; @@ -75,11 +75,11 @@ the layout structure of the widget. paintLayout( p, child ); ++it; } - p-><a href="qpainter.html#drawRect">drawRect</a>( lay->geometry() ); + p-><a href="ntqpainter.html#drawRect">drawRect</a>( lay->geometry() ); } void ExampleWidget::paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * ) { - <a href="qpainter.html">TQPainter</a> p( this ); + <a href="ntqpainter.html">TQPainter</a> p( this ); if ( layout() ) paintLayout( &p, layout() ); } |