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/tdesvn.cpp | |
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/tdesvn.cpp')
-rw-r--r-- | src/tdesvn.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tdesvn.cpp b/src/tdesvn.cpp index ac08597..5aa30f2 100644 --- a/src/tdesvn.cpp +++ b/src/tdesvn.cpp @@ -122,16 +122,16 @@ tdesvn::tdesvn() setCentralWidget(m_part->widget()); TDEAction*tmpAction; - tmpAction = new TDEAction(i18n("Create and open new repository"),"filenew", + tmpAction = new TDEAction(i18n("Create and open new repository"),"document-new", TDEShortcut(),TQT_TQOBJECT(m_part->widget()),TQT_SLOT(slotCreateRepo()),actionCollection(),"subversion_create_repo"); tmpAction->setToolTip(i18n("Create and opens a new local subversion repository")); - tmpAction = new TDEAction(i18n("Dump repository to file"),"filenew", + tmpAction = new TDEAction(i18n("Dump repository to file"),"document-new", TDEShortcut(),TQT_TQOBJECT(m_part->widget()),TQT_SLOT(slotDumpRepo()),actionCollection(),"subversion_dump_repo"); tmpAction->setToolTip(i18n("Dump a subversion repository to a file")); - tmpAction = new TDEAction(i18n("Hotcopy a repository"),"filenew", + tmpAction = new TDEAction(i18n("Hotcopy a repository"),"document-new", TDEShortcut(),TQT_TQOBJECT(m_part->widget()),TQT_SLOT(slotHotcopy()),actionCollection(),"subversion_hotcopy_repo"); tmpAction->setToolTip(i18n("Hotcopy a subversion repository to a new folder")); - tmpAction = new TDEAction(i18n("Load dump into repository"),"filenew", + tmpAction = new TDEAction(i18n("Load dump into repository"),"document-new", TDEShortcut(),TQT_TQOBJECT(m_part->widget()),TQT_SLOT(slotLoaddump()),actionCollection(),"subversion_load_repo"); tmpAction->setToolTip(i18n("Load a dump file into a repository.")); tmpAction = new TDEAction(i18n("Add ssh identities to ssh-agent"),"password", |