From 27edf28be2772229a7974a007313ea30d92c3ffd Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- noatun/library/effectview.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'noatun/library/effectview.cpp') 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); -- cgit v1.2.1