Bring stop, lock, exit, and run icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent e1200afab5
commit d7f20e86f3

@ -112,7 +112,7 @@ void DccTransferPanel::initGUI()
#define icon(s) TDEGlobal::iconLoader()->loadIconSet( s, TDEIcon::Small )
m_buttonAccept = new TQPushButton(icon("player_play"), i18n("Accept"), buttonsBox, "start_dcc");
m_buttonAbort = new TQPushButton(icon("stop"), i18n("Abort"), buttonsBox, "abort_dcc");
m_buttonAbort = new TQPushButton(icon("process-stop"), i18n("Abort"), buttonsBox, "abort_dcc");
m_buttonClear = new TQPushButton(icon("editdelete"), i18n("Clear"), buttonsBox, "clear_dcc");
m_buttonOpen = new TQPushButton(icon("exec"), i18n("Open File"), buttonsBox, "open_dcc_file");
m_buttonDetail = new TQPushButton(icon("view_text"), i18n("Details"), buttonsBox, "detail_dcc");
@ -139,7 +139,7 @@ void DccTransferPanel::initGUI()
m_popup->insertItem( i18n("S&elect All Completed Items"), Popup::SelectAllCompleted);
m_popup->insertSeparator(); // -----
m_popup->insertItem(icon("player_play"), i18n("&Accept"), Popup::Accept);
m_popup->insertItem(icon("stop"), i18n("A&bort"), Popup::Abort);
m_popup->insertItem(icon("process-stop"), i18n("A&bort"), Popup::Abort);
m_popup->insertSeparator(); // -----
// FIXME: make it neat
m_popup->insertItem(icon("redo"), i18n("Resend"), Popup::Resend);

@ -295,7 +295,7 @@ TQPixmap DccTransferPanelItem::getStatusIcon() const
break;
case DccTransfer::Aborted:
case DccTransfer::Failed:
icon = "stop";
icon = "process-stop";
break;
default:
break;

@ -157,7 +157,7 @@ KonviSettingsDialog::KonviSettingsDialog( TQWidget *parent) :
m_confIgnoreWdg = new Ignore_Config(this, "Ignore");
pagePath.clear();
pagePath << i18n("Behavior") << i18n("Ignore");
addPage ( m_confIgnoreWdg, pagePath, "stop", i18n("Ignore") );
addPage ( m_confIgnoreWdg, pagePath, "process-stop", i18n("Ignore") );
connect(m_confIgnoreWdg, TQT_SIGNAL(modified()), this, TQT_SLOT(modifiedSlot()));
m_indexToPageMapping.insert(lastAddedIndex(), m_confIgnoreWdg);

Loading…
Cancel
Save