diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:49 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:49 -0500 |
commit | eae74128ce161d06a7566d65fd2755b145b39890 (patch) | |
tree | 07a0142deae9cbe6af1f5a2a966b79757086f404 | |
parent | dde15864cec3c2e8d8c7b445f5005ac12089c6df (diff) | |
download | kshutdown-eae74128ce161d06a7566d65fd2755b145b39890.tar.gz kshutdown-eae74128ce161d06a7566d65fd2755b145b39890.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-- | kshutdown/appobserver.cpp | 2 | ||||
-rw-r--r-- | 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")); } } |