Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent dde15864ce
commit eae74128ce

@ -63,7 +63,7 @@ AppObserver::AppObserver(TQWidget *parent)
MiscUtils::setHint(cb_processes, i18n("List of the running processes")); MiscUtils::setHint(cb_processes, i18n("List of the running processes"));
// kill button // 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)); b_kill->setSizePolicy(TQSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Preferred));
MiscUtils::setHint(b_kill, i18n("Kill the selected process")); MiscUtils::setHint(b_kill, i18n("Kill the selected process"));
connect(b_kill, SIGNAL(clicked()), SLOT(slotKill())); connect(b_kill, SIGNAL(clicked()), SLOT(slotKill()));

@ -178,11 +178,11 @@ TQString Links::getCurrentTypeIcon() const
void Links::updateAddRemoveButton() { void Links::updateAddRemoveButton() {
if (TQFile::exists(getCurrentLocationPath())) { if (TQFile::exists(getCurrentLocationPath())) {
b_addRemoveLink->setIconSet(SmallIcon("editdelete")); b_addRemoveLink->setIconSet(SmallIcon("edit-delete"));
b_addRemoveLink->setText(i18n("Remove Link")); b_addRemoveLink->setText(i18n("Remove Link"));
} }
else { else {
b_addRemoveLink->setIconSet(SmallIcon("filenew")); b_addRemoveLink->setIconSet(SmallIcon("document-new"));
b_addRemoveLink->setText(i18n("Add Link")); b_addRemoveLink->setText(i18n("Add Link"));
} }
} }

Loading…
Cancel
Save