From 82ecd83484c9fa1ede059986ab771e74e33e68ef Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 16 Aug 2024 19:11:00 +0900 Subject: Rename layout nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tutorial1-12.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tutorial1-12.html') diff --git a/doc/html/tutorial1-12.html b/doc/html/tutorial1-12.html index 8fd714dfe..a3f443f17 100644 --- a/doc/html/tutorial1-12.html +++ b/doc/html/tutorial1-12.html @@ -57,7 +57,7 @@ implementation.

We name declare TQLabel because we want to use a pointer to it in the class definition. -

    class LCDRange : public TQVBox
+

    class LCDRange : public TQVBox
     {
         TQ_OBJECT
     public:
@@ -91,7 +91,7 @@ frame.
 

Here we include the TQLabel class definition.

    LCDRange::LCDRange( TQWidget *parent, const char *name )
-            : TQVBox( parent, name )
+            : TQVBox( parent, name )
     {
         init();
     }
@@ -100,7 +100,7 @@ frame.
 initialization code.
 

    LCDRange::LCDRange( const char *s, TQWidget *parent,
                         const char *name )
-            : TQVBox( parent, name )
+            : TQVBox( parent, name )
     {
         init();
         setText( s );
@@ -296,7 +296,7 @@ changed the constructor to set the new LCDRange text labels.
 

Behavior

The LCDRange widgets look a bit strange - the built-in layout -management in TQVBox gives the labels too much space and the rest not +management in TQVBox gives the labels too much space and the rest not enough. We'll fix that in the next chapter.

(See Compiling for how to create a makefile and build the application.) -- cgit v1.2.3