summaryrefslogtreecommitdiffstats
path: root/doc/html/qlayoutiterator.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qlayoutiterator.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qlayoutiterator.html b/doc/html/qlayoutiterator.html
index d60423df..5e36da55 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 &lt;<a href="qlayout-h.html">qlayout.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;</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-&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="qpainter.html#drawRect">drawRect</a>( lay-&gt;geometry() );
+ p-&gt;<a href="ntqpainter.html#drawRect">drawRect</a>( lay-&gt;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( &amp;p, layout() );
}