summaryrefslogtreecommitdiffstats
path: root/noatun/library/effectview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/effectview.cpp')
-rw-r--r--noatun/library/effectview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noatun/library/effectview.cpp b/noatun/library/effectview.cpp
index fe25abcb..cd9e7d93 100644
--- a/noatun/library/effectview.cpp
+++ b/noatun/library/effectview.cpp
@@ -44,8 +44,8 @@
class EffectListItem : public TQListViewItem
{
public:
- EffectListItem(TQListView *tqparent, TQListViewItem *after, Effect *e)
- : TQListViewItem(tqparent, after, e->title()), mEffect(e)
+ EffectListItem(TQListView *parent, TQListViewItem *after, Effect *e)
+ : TQListViewItem(parent, after, e->title()), mEffect(e)
{
}
@@ -55,8 +55,8 @@ private:
Effect *mEffect;
};
-EffectList::EffectList(TQWidget *tqparent)
- : KListView(tqparent)
+EffectList::EffectList(TQWidget *parent)
+ : KListView(parent)
{
}
@@ -85,9 +85,9 @@ void EffectView::show()
namespace
{
-TQToolButton *newButton(const TQIconSet &iconSet, const TQString &textLabel, TQObject *receiver, const char * slot, TQWidget *tqparent, const char *name = 0)
+TQToolButton *newButton(const TQIconSet &iconSet, const TQString &textLabel, TQObject *receiver, const char * slot, TQWidget *parent, const char *name = 0)
{
- TQToolButton *button = new TQToolButton(tqparent, name);
+ TQToolButton *button = new TQToolButton(parent, name);
button->setIconSet(iconSet);
button->setTextLabel(textLabel, true);
TQObject::connect(button, TQT_SIGNAL(clicked()), receiver, slot);