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

pull/1/head
Timothy Pearson 10 years ago
parent d6059b36df
commit 8c226149dd

@ -161,7 +161,7 @@ TQPixmap ShareListViewItem::createPropertyPixmap()
if (_share->getBoolValue("browseable"))
{
p.drawPixmap(x,0,SmallIcon("run"));
p.drawPixmap(x,0,SmallIcon("system-run"));
x = x+w+margin;
}
@ -305,7 +305,7 @@ void KcmSambaConf::initAdvancedTab()
icon = SmallIcon("folder");
else
if (label == i18n("Locking"))
icon = SmallIcon("lock");
icon = SmallIcon("system-lock-screen");
else
if (label == i18n("Printing"))
icon = SmallIcon("fileprint");

@ -298,7 +298,7 @@ void ShareDlgImpl::initAdvancedTab()
icon = SmallIcon("fileprint");
else
if (label.lower() == "locking")
icon = SmallIcon("lock");
icon = SmallIcon("system-lock-screen");
else
if (label.lower() == "logon")
icon = SmallIcon("tdmconfig");

@ -315,7 +315,7 @@ void TopLevel::setupActions()
actPrint->setEnabled(false);
actStartQuery = new TDEAction(i18n("St&art Query"),"reload", 0 , TQT_TQOBJECT(this),
TQT_SLOT(doDefine()), actionCollection(), "start_query");
actStopQuery = new TDEAction(i18n("St&op Query"),"stop", 0 , TQT_TQOBJECT(this),
actStopQuery = new TDEAction(i18n("St&op Query"),"process-stop", 0 , TQT_TQOBJECT(this),
TQT_SLOT(stopClients()), actionCollection(), "stop_query");
actStopQuery->setEnabled(false);
KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(closeAllWindows()), actionCollection());

@ -49,7 +49,7 @@ namespace KPF
new TDEAction
(
i18n("&Cancel Selected Transfers"),
"stop",
"process-stop",
0,
TQT_TQOBJECT(monitor_),
TQT_SLOT(slotKillSelected()),

@ -69,7 +69,7 @@ TopWidget::TopWidget() : TDEMainWindow(0, "") {
// create menu
mb = new KMenuBar(this);
TQPopupMenu *fm = new TQPopupMenu;
fm->insertItem(SmallIcon("exit"),KStdGuiItem::quit().text(), F_EXIT);
fm->insertItem(SmallIcon("system-log-out"),KStdGuiItem::quit().text(), F_EXIT);
mb->insertItem(i18n("&File"), fm);
mb->setAccel(CTRL + Key_Q, F_EXIT);

@ -102,7 +102,7 @@ MiniTerm::~MiniTerm() {
void MiniTerm::setupToolbar() {
toolbar = new TDEToolBar( this );
toolbar->insertButton("exit", 0,
toolbar->insertButton("system-log-out", 0,
TQT_SIGNAL(clicked()), TQT_TQOBJECT(this),
TQT_SLOT(cancelbutton()), TRUE, i18n("Close MiniTerm"));

Loading…
Cancel
Save