summaryrefslogtreecommitdiffstats
path: root/amarok/src/queuemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/queuemanager.cpp')
-rw-r--r--amarok/src/queuemanager.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/amarok/src/queuemanager.cpp b/amarok/src/queuemanager.cpp
index d99596fa..cb656662 100644
--- a/amarok/src/queuemanager.cpp
+++ b/amarok/src/queuemanager.cpp
@@ -64,8 +64,8 @@ QueueItem::paintCell( TQPainter *p, const TQColorGroup &cg, int column, int widt
/// CLASS QueueList
//////////////////////////////////////////////////////////////////////////////////////////
-QueueList::QueueList( TQWidget *tqparent, const char *name )
- : KListView( tqparent, name )
+QueueList::QueueList( TQWidget *parent, const char *name )
+ : KListView( parent, name )
{
addColumn( i18n("Name") );
setResizeMode( TQListView::LastColumn );
@@ -262,10 +262,10 @@ QueueList::contentsDropEvent( TQDropEvent *e )
}
else
{
- TQListViewItem *tqparent = 0;
+ TQListViewItem *parent = 0;
TQListViewItem *after;
- findDrop( e->pos(), tqparent, after );
+ findDrop( e->pos(), parent, after );
QueueManager::instance()->addItems( after );
}
@@ -278,8 +278,8 @@ QueueList::contentsDropEvent( TQDropEvent *e )
QueueManager *QueueManager::s_instance = 0;
-QueueManager::QueueManager( TQWidget *tqparent, const char *name )
- : KDialogBase( KDialogBase::Swallow, 0, tqparent, name, false, 0, Ok|Apply|Cancel )
+QueueManager::QueueManager( TQWidget *parent, const char *name )
+ : KDialogBase( KDialogBase::Swallow, 0, parent, name, false, 0, Ok|Apply|Cancel )
{
s_instance = this;