summaryrefslogtreecommitdiffstats
path: root/quanta/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:59 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:59 -0500
commit3a347442a45a0631beade76b2870e6c823c2304c (patch)
tree3c9bc3285f66032a43f2559736dc81d281ab82bc /quanta/src
parentbd6cf65a81ec1ece59e191497f8796405babd15b (diff)
downloadtdewebdev-3a347442a45a0631beade76b2870e6c823c2304c.tar.gz
tdewebdev-3a347442a45a0631beade76b2870e6c823c2304c.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 'quanta/src')
-rw-r--r--quanta/src/quanta_init.cpp4
-rw-r--r--quanta/src/quantaview.cpp4
-rw-r--r--quanta/src/viewmanager.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/quanta/src/quanta_init.cpp b/quanta/src/quanta_init.cpp
index 3ea5d11e..6d65d9b6 100644
--- a/quanta/src/quanta_init.cpp
+++ b/quanta/src/quanta_init.cpp
@@ -1050,11 +1050,11 @@ void QuantaInit::initActions()
TQT_TQOBJECT(m_quanta), TQT_SLOT( slotFrameWizard() ),
TQT_TQOBJECT(ac), "tag_frame_wizard" );
- (void) new TDEAction( i18n( "Paste &HTML Quoted" ), "editpaste", 0,
+ (void) new TDEAction( i18n( "Paste &HTML Quoted" ), "edit-paste", 0,
TQT_TQOBJECT(m_quanta), TQT_SLOT( slotPasteHTMLQuoted() ),
TQT_TQOBJECT(ac), "edit_paste_html_quoted" );
- (void) new TDEAction( i18n( "Paste &URL Encoded" ), "editpaste", 0,
+ (void) new TDEAction( i18n( "Paste &URL Encoded" ), "edit-paste", 0,
TQT_TQOBJECT(m_quanta), TQT_SLOT( slotPasteURLEncoded() ),
TQT_TQOBJECT(ac), "edit_paste_url_encoded" );
diff --git a/quanta/src/quantaview.cpp b/quanta/src/quantaview.cpp
index bcef6729..158ba563 100644
--- a/quanta/src/quantaview.cpp
+++ b/quanta/src/quantaview.cpp
@@ -282,7 +282,7 @@ void QuantaView::updateTab()
{
if (qConfig.showCloseButtons == "ShowAlways")
{
- setIcon(SmallIcon("fileclose"));
+ setIcon(SmallIcon("window-close"));
}
if (m_document)
{
@@ -298,7 +298,7 @@ void QuantaView::updateTab()
setMDICaption(urlStr + " " + i18n("[modified]"));
} else
{
- setIcon(SmallIcon("filesave"));
+ setIcon(SmallIcon("document-save"));
setMDICaption(urlStr);
}
m_szCaption = urlStr + " " + i18n("[modified]");
diff --git a/quanta/src/viewmanager.cpp b/quanta/src/viewmanager.cpp
index af057900..831b81f0 100644
--- a/quanta/src/viewmanager.cpp
+++ b/quanta/src/viewmanager.cpp
@@ -67,12 +67,12 @@ ViewManager::ViewManager(TQObject *parent, const char *name) : TQObject(parent,
m_lastActiveEditorView = 0L;
m_documentationView = 0L;
m_tabPopup = new TDEPopupMenu(quantaApp);
- m_tabPopup->insertItem(SmallIcon("fileclose"), i18n("&Close"), this, TQT_SLOT(slotCloseView()));
+ m_tabPopup->insertItem(SmallIcon("window-close"), 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("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->insertItem(SmallIcon("edit-delete"), i18n("&Delete File"), this, TQT_SLOT(slotDeleteFile()), 0, DELETE_ID);
m_tabPopup->insertSeparator();
m_fileListPopup = new TDEPopupMenu(quantaApp);
connect(m_fileListPopup, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(slotFileListPopupAboutToShow()));