summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/queuedialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:08:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:08:00 -0600
commitb1c5bea50ae48c54b476428a21dfe594916cb6ae (patch)
treee539752d1770664512c64f03285d40bd2b07b0c8 /apps/ktorrent/queuedialog.cpp
parent0889370e3050561372c3816dfb2902771ca83765 (diff)
downloadktorrent-b1c5bea50ae48c54b476428a21dfe594916cb6ae.tar.gz
ktorrent-b1c5bea50ae48c54b476428a21dfe594916cb6ae.zip
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'apps/ktorrent/queuedialog.cpp')
-rw-r--r--apps/ktorrent/queuedialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/ktorrent/queuedialog.cpp b/apps/ktorrent/queuedialog.cpp
index a828017..212c920 100644
--- a/apps/ktorrent/queuedialog.cpp
+++ b/apps/ktorrent/queuedialog.cpp
@@ -98,12 +98,12 @@ void QueueItem::paintCell(TQPainter* p,const TQColorGroup & cg,int column,int wi
QueueDialog::QueueDialog(bt::QueueManager* qm, TQWidget *parent, const char *name)
:QueueDlg(parent, name)
{
- KIconLoader* iload = TDEGlobal::iconLoader();
+ TDEIconLoader* iload = TDEGlobal::iconLoader();
- m_tabs->setTabIconSet(m_tabs->page(0), iload->loadIconSet("down", KIcon::Small));
- m_tabs->setTabIconSet(m_tabs->page(1), iload->loadIconSet("up", KIcon::Small));
+ m_tabs->setTabIconSet(m_tabs->page(0), iload->loadIconSet("down", TDEIcon::Small));
+ m_tabs->setTabIconSet(m_tabs->page(1), iload->loadIconSet("up", TDEIcon::Small));
- logo->setPixmap(iload->loadIcon("ktqueuemanager", KIcon::Desktop));
+ logo->setPixmap(iload->loadIcon("ktqueuemanager", TDEIcon::Desktop));
connect(downloadList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(downloadList_currentChanged( TQListViewItem* )));
connect(seedList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(seedList_currentChanged( TQListViewItem* )));
@@ -114,8 +114,8 @@ QueueDialog::QueueDialog(bt::QueueManager* qm, TQWidget *parent, const char *nam
if(seedList->firstChild())
seedList->setCurrentItem(seedList->firstChild());
- btnMoveUp->setPixmap(iload->loadIcon("up", KIcon::Small));
- btnMoveDown->setPixmap(iload->loadIcon("down", KIcon::Small));
+ btnMoveUp->setPixmap(iload->loadIcon("up", TDEIcon::Small));
+ btnMoveDown->setPixmap(iload->loadIcon("down", TDEIcon::Small));
this->qman = qm;