From a30f5359f03c3017fa19a6770fab32d25d22cb87 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 15 Jul 2024 19:08:22 +0900 Subject: Rename graphics class nt* related files to equivalent tq* (part 1) Signed-off-by: Michele Calgaro --- doc/html/qlayoutiterator.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/qlayoutiterator.html') 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.

The following code will draw a rectangle for each layout item in the layout structure of the widget.

-    static void paintLayout( TQPainter *p, TQLayoutItem *lay )
+    static void paintLayout( TQPainter *p, TQLayoutItem *lay )
     {
         TQLayoutIterator it = lay->iterator();
         TQLayoutItem *child;
@@ -75,11 +75,11 @@ the layout structure of the widget.
             paintLayout( p, child );
             ++it;
         }
-        p->drawRect( lay->geometry() );
+        p->drawRect( lay->geometry() );
     }
-    void ExampleWidget::paintEvent( TQPaintEvent * )
+    void ExampleWidget::paintEvent( TQPaintEvent * )
     {
-        TQPainter p( this );
+        TQPainter p( this );
         if ( layout() )
             paintLayout( &p, layout() );
     }
-- 
cgit v1.2.3