summaryrefslogtreecommitdiffstats
path: root/tools/tqvfb/tqvfbratedlg.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 /tools/tqvfb/tqvfbratedlg.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 'tools/tqvfb/tqvfbratedlg.cpp')
-rw-r--r--tools/tqvfb/tqvfbratedlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tqvfb/tqvfbratedlg.cpp b/tools/tqvfb/tqvfbratedlg.cpp
index 5c87e702..082f2bb9 100644
--- a/tools/tqvfb/tqvfbratedlg.cpp
+++ b/tools/tqvfb/tqvfbratedlg.cpp
@@ -52,16 +52,16 @@ TQVFbRateDialog::TQVFbRateDialog( int rate, TQWidget *parent, const char *name,
TQHBoxLayout *hl = new TQHBoxLayout( tl );
rateSlider = new TQSlider( 1, 100, 10, rate, TQSlider::Horizontal, this );
hl->addWidget( rateSlider );
- connect( rateSlider, SIGNAL(valueChanged(int)), this, SLOT(rateChanged(int)) );
+ connect( rateSlider, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(rateChanged(int)) );
rateLabel = new TQLabel( TQString( "%1fps" ).arg(rate), this );
hl->addWidget( rateLabel );
hl = new TQHBoxLayout( tl );
TQPushButton *pb = new TQPushButton( "OK", this );
- connect( pb, SIGNAL(clicked()), this, SLOT(accept()) );
+ connect( pb, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept()) );
hl->addWidget( pb );
pb = new TQPushButton( "Cancel", this );
- connect( pb, SIGNAL(clicked()), this, SLOT(cancel()) );
+ connect( pb, TQ_SIGNAL(clicked()), this, TQ_SLOT(cancel()) );
hl->addWidget( pb );
}