summaryrefslogtreecommitdiffstats
path: root/examples/wizard/wizard.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /examples/wizard/wizard.cpp
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz
tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/wizard/wizard.cpp')
-rw-r--r--examples/wizard/wizard.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/wizard/wizard.cpp b/examples/wizard/wizard.cpp
index ad5c8699..40cb686a 100644
--- a/examples/wizard/wizard.cpp
+++ b/examples/wizard/wizard.cpp
@@ -52,8 +52,8 @@ void Wizard::setupPage1()
key->setMaxLength( 4 );
key->setValidator( new TQIntValidator( 1000, 9999, key ) );
- connect( key, SIGNAL( textChanged( const TQString & ) ),
- this, SLOT( keyChanged( const TQString & ) ) );
+ connect( key, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( keyChanged( const TQString & ) ) );
addPage( page1, "Personal Key" );
@@ -108,12 +108,12 @@ void Wizard::setupPage2()
phone = new TQLineEdit( row4 );
email = new TQLineEdit( row5 );
- connect( firstName, SIGNAL( textChanged( const TQString & ) ),
- this, SLOT( dataChanged( const TQString & ) ) );
- connect( lastName, SIGNAL( textChanged( const TQString & ) ),
- this, SLOT( dataChanged( const TQString & ) ) );
- connect( email, SIGNAL( textChanged( const TQString & ) ),
- this, SLOT( dataChanged( const TQString & ) ) );
+ connect( firstName, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( dataChanged( const TQString & ) ) );
+ connect( lastName, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( dataChanged( const TQString & ) ) );
+ connect( email, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( dataChanged( const TQString & ) ) );
addPage( page2, "Personal Data" );