summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/vcr
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/designer/examples/vcr
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/designer/examples/vcr')
-rw-r--r--tools/designer/examples/vcr/vcr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/designer/examples/vcr/vcr.cpp b/tools/designer/examples/vcr/vcr.cpp
index fd39e1a98..d5b36f4d7 100644
--- a/tools/designer/examples/vcr/vcr.cpp
+++ b/tools/designer/examples/vcr/vcr.cpp
@@ -99,19 +99,19 @@ Vcr::Vcr( TQWidget *parent, const char *name )
TQPushButton *rewind = new TQPushButton( TQPixmap( rewind_xpm ), 0, this, "vcr_rewind" );
layout->addWidget( rewind );
- connect( rewind, SIGNAL(clicked()), SIGNAL(rewind()) );
+ connect( rewind, TQ_SIGNAL(clicked()), TQ_SIGNAL(rewind()) );
TQPushButton *play = new TQPushButton( TQPixmap( play_xpm ), 0, this, "vcr_play" );
layout->addWidget( play );
- connect( play, SIGNAL(clicked()), SIGNAL(play()) );
+ connect( play, TQ_SIGNAL(clicked()), TQ_SIGNAL(play()) );
TQPushButton *next = new TQPushButton( TQPixmap( next_xpm ), 0, this, "vcr_next" );
layout->addWidget( next );
- connect( next, SIGNAL(clicked()), SIGNAL(next()) );
+ connect( next, TQ_SIGNAL(clicked()), TQ_SIGNAL(next()) );
TQPushButton *stop = new TQPushButton( TQPixmap( stop_xpm ), 0, this, "vcr_stop" );
layout->addWidget( stop );
- connect( stop, SIGNAL(clicked()), SIGNAL(stop()) );
+ connect( stop, TQ_SIGNAL(clicked()), TQ_SIGNAL(stop()) );
}