diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:12:17 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:12:17 -0500 |
commit | 18d366a25797e025954223dff97a5e522da6812f (patch) | |
tree | 9517cb65f60c22adf6ba852299e4d9ae15ed7a2d | |
parent | 42cb4143d64f696d1bc958aed36d3d95b2c0e923 (diff) | |
download | kftpgrabber-18d366a25797e025954223dff97a5e522da6812f.tar.gz kftpgrabber-18d366a25797e025954223dff97a5e522da6812f.zip |
Bring up, down, top, and bottom icons into XDG compliance
-rw-r--r-- | kftpgrabber/src/widgets/filtereditor.cpp | 4 | ||||
-rw-r--r-- | kftpgrabber/src/widgets/queueview/queueview.cpp | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/kftpgrabber/src/widgets/filtereditor.cpp b/kftpgrabber/src/widgets/filtereditor.cpp index 58178e6..a9479f7 100644 --- a/kftpgrabber/src/widgets/filtereditor.cpp +++ b/kftpgrabber/src/widgets/filtereditor.cpp @@ -143,12 +143,12 @@ FilterListView::FilterListView(TQWidget *parent) // Up/down buttons m_buttonUp = new KPushButton(TQString::null, hb); m_buttonUp->setAutoRepeat(true); - m_buttonUp->setIconSet(BarIconSet("up", TDEIcon::SizeSmall)); + m_buttonUp->setIconSet(BarIconSet("go-up", TDEIcon::SizeSmall)); m_buttonUp->setMinimumSize(m_buttonUp->sizeHint() * 1.2); m_buttonDown = new KPushButton(TQString::null, hb); m_buttonDown->setAutoRepeat(true); - m_buttonDown->setIconSet(BarIconSet("down", TDEIcon::SizeSmall)); + m_buttonDown->setIconSet(BarIconSet("go-down", TDEIcon::SizeSmall)); m_buttonDown->setMinimumSize(m_buttonDown->sizeHint() * 1.2); TQToolTip::add(m_buttonUp, i18n("Up")); diff --git a/kftpgrabber/src/widgets/queueview/queueview.cpp b/kftpgrabber/src/widgets/queueview/queueview.cpp index e0249e4..59b0790 100644 --- a/kftpgrabber/src/widgets/queueview/queueview.cpp +++ b/kftpgrabber/src/widgets/queueview/queueview.cpp @@ -558,10 +558,10 @@ void QueueView::initActions() m_abortAction = new TDEAction(i18n("&Abort Transfer"), TDEShortcut(), this, SLOT(slotAbort()), m_actionCollection, "abort"); m_removeAction = new TDEAction(i18n("&Remove"), "editdelete", TDEShortcut(TQt::Key_Delete), this, SLOT(slotRemove()), m_actionCollection, "remove"); m_removeAllAction = new TDEAction(i18n("Remove &All"), TDEShortcut(), this, SLOT(slotRemoveAll()), m_actionCollection, "removeAll"); - m_moveUpAction = new TDEAction(i18n("Move &Up"), "up", TDEShortcut(), this, SLOT(slotMoveUp()), m_actionCollection, "moveUp"); - m_moveDownAction = new TDEAction(i18n("Move &Down"), "down", TDEShortcut("del"), this, SLOT(slotMoveDown()), m_actionCollection, "moveDown"); - m_moveTopAction = new TDEAction(i18n("Move To &Top"), "top", TDEShortcut(), this, SLOT(slotMoveTop()), m_actionCollection, "moveTop"); - m_moveBottomAction = new TDEAction(i18n("Move To &Bottom"), "bottom", TDEShortcut(), this, SLOT(slotMoveBottom()), m_actionCollection, "moveBottom"); + m_moveUpAction = new TDEAction(i18n("Move &Up"), "go-up", TDEShortcut(), this, SLOT(slotMoveUp()), m_actionCollection, "moveUp"); + m_moveDownAction = new TDEAction(i18n("Move &Down"), "go-down", TDEShortcut("del"), this, SLOT(slotMoveDown()), m_actionCollection, "moveDown"); + m_moveTopAction = new TDEAction(i18n("Move To &Top"), "go-top", TDEShortcut(), this, SLOT(slotMoveTop()), m_actionCollection, "moveTop"); + m_moveBottomAction = new TDEAction(i18n("Move To &Bottom"), "go-bottom", TDEShortcut(), this, SLOT(slotMoveBottom()), m_actionCollection, "moveBottom"); m_editAction = new TDEAction(i18n("&Change Transfer Info"), TDEShortcut(), this, SLOT(slotEdit()), m_actionCollection, "changeTransfer"); // Create the toolbar actions |