diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qlayoutiterator.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
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() ); } |