Branch: master

eae74128 2014-10-13 15:43:49 Timothy Pearson
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
M kshutdown/appobserver.cpp
M kshutdown/links.cpp
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 @@
 	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 @@
 
 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"));
 	}
 }