summaryrefslogtreecommitdiffstats
path: root/examples/progress/progress.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/progress/progress.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/progress/progress.cpp')
-rw-r--r--examples/progress/progress.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/progress/progress.cpp b/examples/progress/progress.cpp
index d12867e3..190f50de 100644
--- a/examples/progress/progress.cpp
+++ b/examples/progress/progress.cpp
@@ -149,20 +149,20 @@ public:
menubar->insertItem( "&File", file );
for (int i=first_draw_item; i<=last_draw_item; i++)
file->insertItem( drawItemText(i), i );
- connect( menubar, SIGNAL(activated(int)), this, SLOT(doMenuItem(int)) );
+ connect( menubar, TQ_SIGNAL(activated(int)), this, TQ_SLOT(doMenuItem(int)) );
file->insertSeparator();
- file->insertItem( "Quit", tqApp, SLOT(quit()) );
+ file->insertItem( "Quit", tqApp, TQ_SLOT(quit()) );
options = new TQPopupMenu();
TQ_CHECK_PTR( options );
menubar->insertItem( "&Options", options );
- td_id = options->insertItem( "Timer driven", this, SLOT(timerDriven()) );
- ld_id = options->insertItem( "Loop driven", this, SLOT(loopDriven()) );
+ td_id = options->insertItem( "Timer driven", this, TQ_SLOT(timerDriven()) );
+ ld_id = options->insertItem( "Loop driven", this, TQ_SLOT(loopDriven()) );
options->insertSeparator();
- dl_id = options->insertItem( "Default label", this, SLOT(defaultLabel()) );
- cl_id = options->insertItem( "Custom label", this, SLOT(customLabel()) );
+ dl_id = options->insertItem( "Default label", this, TQ_SLOT(defaultLabel()) );
+ cl_id = options->insertItem( "Custom label", this, TQ_SLOT(customLabel()) );
options->insertSeparator();
- md_id = options->insertItem( "No minimum duration", this, SLOT(toggleMinimumDuration()) );
+ md_id = options->insertItem( "No minimum duration", this, TQ_SLOT(toggleMinimumDuration()) );
options->setCheckable( TRUE );
loopDriven();
defaultLabel();
@@ -279,7 +279,7 @@ private:
pb = newProgressDialog("Drawing rectangles.\n"
"Using timer event.", n, FALSE);
pb->setCaption("Please Wait");
- connect(pb, SIGNAL(cancelled()), this, SLOT(stopDrawing()));
+ connect(pb, TQ_SIGNAL(cancelled()), this, TQ_SLOT(stopDrawing()));
enableDrawingItems(FALSE);
startTimer(0);
got_stop = FALSE;