diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:32 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:32 -0500 |
commit | bd6cf65a81ec1ece59e191497f8796405babd15b (patch) | |
tree | 7069e338fd7fb1bbbe4d46d464b8df2b74bc7880 /quanta/src | |
parent | a2541c112aa09e2f20ae10006d4aa70e61c31761 (diff) | |
download | tdewebdev-bd6cf65a81ec1ece59e191497f8796405babd15b.tar.gz tdewebdev-bd6cf65a81ec1ece59e191497f8796405babd15b.zip |
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'quanta/src')
-rw-r--r-- | quanta/src/quanta_init.cpp | 2 | ||||
-rw-r--r-- | quanta/src/viewmanager.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quanta/src/quanta_init.cpp b/quanta/src/quanta_init.cpp index 31d41806..3ea5d11e 100644 --- a/quanta/src/quanta_init.cpp +++ b/quanta/src/quanta_init.cpp @@ -754,7 +754,7 @@ void QuantaInit::initActions() m_quanta->saveAllAction = new TDEAction( i18n( "Save All..." ), "save_all", SHIFT+TDEStdAccel::shortcut(TDEStdAccel::Save).keyCodeQt(), TQT_TQOBJECT(m_quanta), TQT_SLOT( slotFileSaveAll() ), TQT_TQOBJECT(ac), "file_save_all" ); - (void) new TDEAction(i18n("Reloa&d"), "revert", SHIFT+Key_F5, TQT_TQOBJECT(m_quanta), + (void) new TDEAction(i18n("Reloa&d"), "document-revert", SHIFT+Key_F5, TQT_TQOBJECT(m_quanta), TQT_SLOT(slotFileReload()), TQT_TQOBJECT(ac), "file_reload"); // (void) new TDEAction(i18n("Reload All "), 0, 0, m_quanta, // TQT_SLOT(slotFileReloadAll()), TQT_TQOBJECT(ac), "file_reload_all"); diff --git a/quanta/src/viewmanager.cpp b/quanta/src/viewmanager.cpp index 18c13454..af057900 100644 --- a/quanta/src/viewmanager.cpp +++ b/quanta/src/viewmanager.cpp @@ -70,7 +70,7 @@ ViewManager::ViewManager(TQObject *parent, const char *name) : TQObject(parent, m_tabPopup->insertItem(SmallIcon("fileclose"), i18n("&Close"), this, TQT_SLOT(slotCloseView())); m_tabPopup->insertItem(i18n("Close &Other Tabs"), this, TQT_SLOT(slotCloseOtherTabs())); m_tabPopup->insertItem(i18n("Close &All"), this, TQT_SLOT(closeAll())); - m_tabPopup->insertItem(SmallIcon("revert"), i18n("&Reload"), this, TQT_SLOT(slotReloadFile()), 0, RELOAD_ID); + m_tabPopup->insertItem(SmallIcon("document-revert"), i18n("&Reload"), this, TQT_SLOT(slotReloadFile()), 0, RELOAD_ID); m_tabPopup->insertItem(SmallIcon("go-up"), i18n("&Upload File"), this, TQT_SLOT(slotUploadFile()), 0, UPLOAD_ID); m_tabPopup->insertItem(SmallIcon("editdelete"), i18n("&Delete File"), this, TQT_SLOT(slotDeleteFile()), 0, DELETE_ID); m_tabPopup->insertSeparator(); |