From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/lineedits-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/lineedits-example.html') diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html index c450cc8a7..d2f5b7434 100644 --- a/doc/html/lineedits-example.html +++ b/doc/html/lineedits-example.html @@ -127,7 +127,7 @@ protected slots: combo1->insertItem( "No Echo" ); // ...and connect the activated() TQ_SIGNAL with the slotEchoChanged() TQ_SLOT to be able // to react when an item is selected - connect( combo1, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotEchoChanged( int ) ) ); + connect( combo1, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotEchoChanged( int ) ) ); // insert the first LineEdit lined1 = new TQLineEdit( this ); @@ -148,7 +148,7 @@ protected slots: combo2->insertItem( "Integer Validator" ); combo2->insertItem( "Double Validator" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - connect( combo2, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotValidatorChanged( int ) ) ); + connect( combo2, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotValidatorChanged( int ) ) ); // and the second LineEdit lined2 = new TQLineEdit( this ); @@ -169,7 +169,7 @@ protected slots: combo3->insertItem( "Centered" ); combo3->insertItem( "Right" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - connect( combo3, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotAlignmentChanged( int ) ) ); + connect( combo3, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotAlignmentChanged( int ) ) ); // and the third lineedit lined3 = new TQLineEdit( this ); @@ -192,7 +192,7 @@ protected slots: combo4->insertItem( "License key" ); // ...this time we use the activated( const TQString & ) signal - connect( combo4, TQ_SIGNAL( activated( int ) ), + connect( combo4, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotInputMaskChanged( int ) ) ); // and the fourth lineedit @@ -212,7 +212,7 @@ protected slots: combo5->insertItem( "False" ); combo5->insertItem( "True" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - connect( combo5, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotReadOnlyChanged( int ) ) ); + connect( combo5, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotReadOnlyChanged( int ) ) ); // and the last lineedit lined5 = new TQLineEdit( this ); -- cgit v1.2.1