summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_progressbox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:29:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:29:10 +0900
commitbd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db (patch)
tree0d06e55abb137dce9a0fec3b4bf0f726d981cd1f /ksquirrel/sq_progressbox.cpp
parent69c8b6084655e30ef0fd8b0aef498faf8f23bff3 (diff)
downloadksquirrel-bd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db.tar.gz
ksquirrel-bd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksquirrel/sq_progressbox.cpp')
-rw-r--r--ksquirrel/sq_progressbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ksquirrel/sq_progressbox.cpp b/ksquirrel/sq_progressbox.cpp
index 8997589..34516a3 100644
--- a/ksquirrel/sq_progressbox.cpp
+++ b/ksquirrel/sq_progressbox.cpp
@@ -30,7 +30,7 @@ SQ_ProgressBox::SQ_ProgressBox(TQWidget *parent, const char *name) : TQHBox(pare
buttonStop = new TQPushButton(this);
buttonStop->setFlat(true);
buttonStop->setPixmap(SQ_IconLoader::instance()->loadIcon("media-playback-stop", TDEIcon::Desktop, TDEIcon::SizeSmall));
- connect(buttonStop, TQT_SIGNAL(clicked()), parent, TQT_SLOT(slotThumbnailUpdateToggle()));
+ connect(buttonStop, TQ_SIGNAL(clicked()), parent, TQ_SLOT(slotThumbnailUpdateToggle()));
// create progress bar
p = new SQ_Progress(this);