summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_progressbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sq_progressbox.cpp')
-rw-r--r--ksquirrel/sq_progressbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksquirrel/sq_progressbox.cpp b/ksquirrel/sq_progressbox.cpp
index bd72131..0997470 100644
--- a/ksquirrel/sq_progressbox.cpp
+++ b/ksquirrel/sq_progressbox.cpp
@@ -24,13 +24,13 @@
#include "sq_iconloader.h"
#include "sq_progressbox.h"
-SQ_ProgressBox::SQ_ProgressBox(TQWidget *tqparent, const char *name) : TQHBox(tqparent, name)
+SQ_ProgressBox::SQ_ProgressBox(TQWidget *parent, const char *name) : TQHBox(parent, name)
{
// TQToolBar *progressBoxBar = new TQToolBar(TQString(), NULL, this);
buttonStop = new TQPushButton(this);
buttonStop->setFlat(true);
buttonStop->setPixmap(SQ_IconLoader::instance()->loadIcon("player_stop", KIcon::Desktop, KIcon::SizeSmall));
- connect(buttonStop, TQT_SIGNAL(clicked()), tqparent, TQT_SLOT(slotThumbnailUpdateToggle()));
+ connect(buttonStop, TQT_SIGNAL(clicked()), parent, TQT_SLOT(slotThumbnailUpdateToggle()));
// create progress bar
p = new SQ_Progress(this);