summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_progressbox.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit2af11d9103e8eb8aa289bc1e13bbeb995ce627c6 (patch)
tree33f627862caa5ef77ec2993f9c0b76cac73d7ab4 /ksquirrel/sq_progressbox.cpp
parent79128018a1b71d8fa9218e925a2409abb6fce7d2 (diff)
downloadksquirrel-2af11d91.tar.gz
ksquirrel-2af11d91.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksquirrel@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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);