Bring up, down, top, and bottom icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 4ef10a24ab
commit a646dfad79

@ -76,7 +76,7 @@ void K3bFileView::setupGUI()
// setup actions
TDEAction* actionHome = m_dirOp->actionCollection()->action("home");
TDEAction* actionBack = m_dirOp->actionCollection()->action("back");
TDEAction* actionUp = m_dirOp->actionCollection()->action("up");
TDEAction* actionUp = m_dirOp->actionCollection()->action("go-up");
TDEAction* actionReload = m_dirOp->actionCollection()->action("reload");
m_toolBox->addButton( actionUp );

@ -89,12 +89,12 @@ K3bCddbOptionTab::K3bCddbOptionTab( TQWidget* parent, const char* name )
// set icons for the buttons
m_buttonAddLocalDir->setPixmap( SmallIcon("ok") );
m_buttonRemoveLocalDir->setPixmap( SmallIcon("process-stop") );
m_buttonLocalDirUp->setPixmap( SmallIcon("up") );
m_buttonLocalDirDown->setPixmap( SmallIcon("down") );
m_buttonLocalDirUp->setPixmap( SmallIcon("go-up") );
m_buttonLocalDirDown->setPixmap( SmallIcon("go-down") );
m_buttonAddCddbServer->setPixmap( SmallIcon("ok") );
m_buttonRemoveCddbServer->setPixmap( SmallIcon("process-stop") );
m_buttonCddbServerUp->setPixmap( SmallIcon("up") );
m_buttonCddbServerDown->setPixmap( SmallIcon("down") );
m_buttonCddbServerUp->setPixmap( SmallIcon("go-up") );
m_buttonCddbServerDown->setPixmap( SmallIcon("go-down") );
// setup connections

@ -329,7 +329,7 @@ void K3bDataFileView::setupActions()
renameShortCut.append( TDEShortcut(CTRL+Key_R) ); // backwards compatibility
m_actionRename = new TDEAction( i18n("Rename"), "edit", renameShortCut, TQT_TQOBJECT(this), TQT_SLOT(slotRenameItem()),
actionCollection(), "rename" );
m_actionParentDir = new TDEAction( i18n("Parent Directory"), "up", 0, TQT_TQOBJECT(this), TQT_SLOT(slotParentDir()),
m_actionParentDir = new TDEAction( i18n("Parent Directory"), "go-up", 0, TQT_TQOBJECT(this), TQT_SLOT(slotParentDir()),
actionCollection(), "parent_dir" );
m_actionOpen = new TDEAction( i18n("Open"), "fileopen", 0, TQT_TQOBJECT(this), TQT_SLOT(slotOpen()),
actionCollection(), "open" );

Loading…
Cancel
Save