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")); } }