summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:42 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:42 -0500
commitb420248927dde2eaea8cccd4b69df7a2b344416f (patch)
treeb87b7d647cd5a90d9a27c2adab8ee078371dcbff
parenteaf7f46156c328ec2919f365de70b19564ac6a26 (diff)
downloaddolphin-b420248927dde2eaea8cccd4b69df7a2b344416f.tar.gz
dolphin-b420248927dde2eaea8cccd4b69df7a2b344416f.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
-rw-r--r--src/bookmarkssidebarpage.cpp6
-rw-r--r--src/dolphin.cpp6
-rw-r--r--src/dolphincontextmenu.cpp2
-rw-r--r--src/filterbar.cpp2
4 files changed, 8 insertions, 8 deletions
diff --git a/src/bookmarkssidebarpage.cpp b/src/bookmarkssidebarpage.cpp
index e70e8af..94a37eb 100644
--- a/src/bookmarkssidebarpage.cpp
+++ b/src/bookmarkssidebarpage.cpp
@@ -102,12 +102,12 @@ void BookmarksSidebarPage::slotContextMenuRequested(TQListBoxItem* item,
TQPopupMenu* popup = new TQPopupMenu();
if (item == 0) {
- popup->insertItem(SmallIcon("filenew"), i18n("Add Bookmark..."), addID);
+ popup->insertItem(SmallIcon("document-new"), i18n("Add Bookmark..."), addID);
}
else {
- popup->insertItem(SmallIcon("filenew"), i18n("Insert Bookmark..."), insertID);
+ popup->insertItem(SmallIcon("document-new"), i18n("Insert Bookmark..."), insertID);
popup->insertItem(SmallIcon("edit"), i18n("Edit..."), editID);
- popup->insertItem(SmallIcon("editdelete"), i18n("Delete"), deleteID);
+ popup->insertItem(SmallIcon("edit-delete"), i18n("Delete"), deleteID);
}
KBookmarkManager* manager = DolphinSettings::instance().bookmarkManager();
diff --git a/src/dolphin.cpp b/src/dolphin.cpp
index 8d3874e..de44df9 100644
--- a/src/dolphin.cpp
+++ b/src/dolphin.cpp
@@ -126,7 +126,7 @@ void Dolphin::dropURLs(const KURL::List& urls,
TDEPopupMenu popup(this);
popup.insertItem(SmallIcon("goto"), i18n("&Move Here") + "\t" + KKey::modFlagLabel(KKey::SHIFT), 0);
- popup.insertItem(SmallIcon("editcopy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
+ popup.insertItem(SmallIcon("edit-copy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
popup.insertItem(i18n("&Link Here") + "\t" + KKey::modFlagLabel((KKey::ModFlag)(KKey::CTRL|KKey::SHIFT)), 2);
popup.insertSeparator();
popup.insertItem(SmallIcon("process-stop"), i18n("Cancel"), 3);
@@ -549,7 +549,7 @@ void Dolphin::deleteItems()
const bool del = KMessageBox::warningContinueCancel(this,
text,
TQString(),
- KGuiItem(i18n("Delete"), SmallIcon("editdelete"))
+ KGuiItem(i18n("Delete"), SmallIcon("edit-delete"))
) == KMessageBox::Continue;
if (del) {
TDEIO::Job* job = TDEIO::del(list);
@@ -1193,7 +1193,7 @@ void Dolphin::setupActions()
TDEAction* deleteAction = new TDEAction(i18n("Delete"), "Shift+Delete",
TQT_TQOBJECT(this), TQT_SLOT(deleteItems()),
actionCollection(), "delete");
- deleteAction->setIcon("editdelete");
+ deleteAction->setIcon("edit-delete");
new TDEAction(i18n("Propert&ies"), "Alt+Return",
TQT_TQOBJECT(this), TQT_SLOT(properties()),
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp
index 1b9dbbf..345773a 100644
--- a/src/dolphincontextmenu.cpp
+++ b/src/dolphincontextmenu.cpp
@@ -126,7 +126,7 @@ void DolphinContextMenu::openViewportContextMenu()
}
else
{
- popup->insertItem(SmallIcon("filenew"), i18n("Create New"), createNewMenu);
+ popup->insertItem(SmallIcon("document-new"), i18n("Create New"), createNewMenu);
}
popup->insertSeparator();
diff --git a/src/filterbar.cpp b/src/filterbar.cpp
index a0c0639..1db8835 100644
--- a/src/filterbar.cpp
+++ b/src/filterbar.cpp
@@ -49,7 +49,7 @@ FilterBar::FilterBar(TQWidget *parent, const char *name) :
layout->addWidget(m_filterInput);
m_close = new KPushButton(this);
- m_close->setIconSet(SmallIcon("fileclose"));
+ m_close->setIconSet(SmallIcon("window-close"));
m_close->setFlat(true);
layout->addWidget(m_close);
layout->addSpacing(gap);