diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
commit | 6200c1cb09770b12e36aadfa48baf14149bc44c8 (patch) | |
tree | 9f94e937d3aece65ea3ec4060b856ea212d6f5e7 /src/svnfrontend | |
parent | 99fa29b45cdb89b2bbbbc77b2ec289c6e38039d5 (diff) | |
download | tdesvn-6200c1cb09770b12e36aadfa48baf14149bc44c8.tar.gz tdesvn-6200c1cb09770b12e36aadfa48baf14149bc44c8.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'src/svnfrontend')
-rw-r--r-- | src/svnfrontend/tdesvnfilelist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/tdesvnfilelist.cpp b/src/svnfrontend/tdesvnfilelist.cpp index aa88573..5938561 100644 --- a/src/svnfrontend/tdesvnfilelist.cpp +++ b/src/svnfrontend/tdesvnfilelist.cpp @@ -303,7 +303,7 @@ void tdesvnfilelist::setupActions() TDEShortcut(),TQT_TQOBJECT(this),TQT_SLOT(slotUnlock()),m_filesAction,"make_svn_unlock"); /* 3. actions only on dirs */ - m_MkdirAction = new TDEAction(i18n("New folder"),"folder_new", + m_MkdirAction = new TDEAction(i18n("New folder"),"folder-new", TDEShortcut(),TQT_TQOBJECT(this),TQT_SLOT(slotMkdir()),m_filesAction,"make_svn_mkdir"); m_switchRepository = new TDEAction(i18n("Switch repository"),"tdesvnswitch", TDEShortcut(), m_SvnWrapper,TQT_SLOT(slotSwitch()),m_filesAction,"make_svn_switch"); @@ -315,7 +315,7 @@ void tdesvnfilelist::setupActions() TQT_TQOBJECT(this),TQT_SLOT(slotCheckNewItems()),m_filesAction,"make_check_unversioned"); tmp_action->setToolTip(i18n("Browse folder for unversioned items and add them if wanted.")); - m_changeToRepository = new TDEAction(i18n("Open repository of working copy"),"gohome",TDEShortcut(), + m_changeToRepository = new TDEAction(i18n("Open repository of working copy"),"go-home",TDEShortcut(), TQT_TQOBJECT(this),TQT_SLOT(slotChangeToRepository()),m_filesAction,"make_switch_to_repo"); m_changeToRepository->setToolTip(i18n("Opens the repository the current working copy was checked out from")); @@ -1872,7 +1872,7 @@ void tdesvnfilelist::slotInternalDrop() if (action==TQDropEvent::UserAction) { TQPopupMenu popup; popup.insertItem(SmallIconSet("goto"), i18n( "Move Here" ) + "\t" + KKey::modFlagLabel( KKey::SHIFT ), 2 ); - popup.insertItem(SmallIconSet("editcopy"), i18n( "Copy Here" ) + "\t" + KKey::modFlagLabel( KKey::CTRL ), 1 ); + popup.insertItem(SmallIconSet("edit-copy"), i18n( "Copy Here" ) + "\t" + KKey::modFlagLabel( KKey::CTRL ), 1 ); popup.insertSeparator(); popup.insertItem(SmallIconSet("cancel"), i18n( "Cancel" ) + "\t" + KKey( TQt::Key_Escape ).toString(), 5); int result = popup.exec(m_pList->intern_drop_pos); |