From eae74128ce161d06a7566d65fd2755b145b39890 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 15:43:49 -0500 Subject: [PATCH] Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance --- kshutdown/appobserver.cpp | 2 +- kshutdown/links.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kshutdown/appobserver.cpp b/kshutdown/appobserver.cpp index 6977d97..dc465b7 100644 --- a/kshutdown/appobserver.cpp +++ b/kshutdown/appobserver.cpp @@ -63,7 +63,7 @@ AppObserver::AppObserver(TQWidget *parent) MiscUtils::setHint(cb_processes, i18n("List of the running processes")); // kill button - b_kill = new KPushButton(SmallIcon("editdelete"), i18n("Kill"), this, "KPushButton::b_kill"); + b_kill = new KPushButton(SmallIcon("edit-delete"), i18n("Kill"), this, "KPushButton::b_kill"); b_kill->setSizePolicy(TQSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Preferred)); MiscUtils::setHint(b_kill, i18n("Kill the selected process")); connect(b_kill, SIGNAL(clicked()), SLOT(slotKill())); diff --git a/kshutdown/links.cpp b/kshutdown/links.cpp index adb61e3..2c45e24 100644 --- a/kshutdown/links.cpp +++ b/kshutdown/links.cpp @@ -178,11 +178,11 @@ TQString Links::getCurrentTypeIcon() const void Links::updateAddRemoveButton() { if (TQFile::exists(getCurrentLocationPath())) { - b_addRemoveLink->setIconSet(SmallIcon("editdelete")); + b_addRemoveLink->setIconSet(SmallIcon("edit-delete")); b_addRemoveLink->setText(i18n("Remove Link")); } else { - b_addRemoveLink->setIconSet(SmallIcon("filenew")); + b_addRemoveLink->setIconSet(SmallIcon("document-new")); b_addRemoveLink->setText(i18n("Add Link")); } }