diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-15 19:08:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-18 09:31:41 +0900 |
commit | a30f5359f03c3017fa19a6770fab32d25d22cb87 (patch) | |
tree | cb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/qlayoutiterator.html | |
parent | 25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff) | |
download | tqt-a30f5359.tar.gz tqt-a30f5359.zip |
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 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->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="ntqpainter.html#drawRect">drawRect</a>( lay->geometry() ); + p-><a href="tqpainter.html#drawRect">drawRect</a>( lay->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( &p, layout() ); } |