summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:58 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:58 -0500
commit965d0b09cf8c761c2027dc9412e5ffb4f47546ff (patch)
treef6feab031dbacec6ccee932ba3160f6247839aeb
parent7c7b317942da0a203cfd000ab53cd0f2891316de (diff)
downloadtdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.tar.gz
tdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.zip
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r--akregator/src/actionmanagerimpl.cpp2
-rw-r--r--certmanager/certmanager.cpp2
-rw-r--r--karm/karm_part.cpp2
-rw-r--r--karm/mainwindow.cpp2
-rw-r--r--kmail/headerlistquicksearch.cpp2
-rw-r--r--kmail/kmsystemtray.cpp2
-rw-r--r--knode/kncomposer.cpp2
-rw-r--r--knode/knmainwidget.cpp2
-rw-r--r--knotes/knote.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/akregator/src/actionmanagerimpl.cpp b/akregator/src/actionmanagerimpl.cpp
index 87b1ff19..40dcc8f7 100644
--- a/akregator/src/actionmanagerimpl.cpp
+++ b/akregator/src/actionmanagerimpl.cpp
@@ -307,7 +307,7 @@ void ActionManagerImpl::initView(View* view)
new TDEAction(i18n("&Fetch Feed"), "down", TDEStdAccel::shortcut(TDEStdAccel::Reload), TQT_TQOBJECT(d->view), TQT_SLOT(slotFetchCurrentFeed()), actionCollection(), "feed_fetch");
new TDEAction(i18n("Fe&tch All Feeds"), "bottom", "Ctrl+L", TQT_TQOBJECT(d->view), TQT_SLOT(slotFetchAllFeeds()), actionCollection(), "feed_fetch_all");
- TDEAction* stopAction = new TDEAction(i18n( "&Abort Fetches" ), "stop", Key_Escape, Kernel::self()->fetchQueue(), TQT_SLOT(slotAbort()), actionCollection(), "feed_stop");
+ TDEAction* stopAction = new TDEAction(i18n( "&Abort Fetches" ), "process-stop", Key_Escape, Kernel::self()->fetchQueue(), TQT_SLOT(slotAbort()), actionCollection(), "feed_stop");
stopAction->setEnabled(false);
new TDEAction(i18n("&Mark Feed as Read"), "goto", "Ctrl+R", TQT_TQOBJECT(d->view), TQT_SLOT(slotMarkAllRead()), actionCollection(), "feed_mark_all_as_read");
diff --git a/certmanager/certmanager.cpp b/certmanager/certmanager.cpp
index ea1910fc..c818824f 100644
--- a/certmanager/certmanager.cpp
+++ b/certmanager/certmanager.cpp
@@ -262,7 +262,7 @@ void CertManager::createActions() {
connectEnableOperationSignal( TQT_TQOBJECT(this), action );
- action = new TDEAction( i18n("Stop Operation"), "stop", Key_Escape,
+ action = new TDEAction( i18n("Stop Operation"), "process-stop", Key_Escape,
TQT_TQOBJECT(this), TQT_SIGNAL(stopOperations()),
actionCollection(), "view_stop_operations" );
action->setEnabled( false );
diff --git a/karm/karm_part.cpp b/karm/karm_part.cpp
index b46202bf..50837508 100644
--- a/karm/karm_part.cpp
+++ b/karm/karm_part.cpp
@@ -139,7 +139,7 @@ void karmPart::makeMenus()
TQT_SLOT( startCurrentTimer() ), actionCollection(),
"start");
actionStop = new TDEAction( i18n("S&top"),
- TQString::fromLatin1("stop"), 0,
+ TQString::fromLatin1("process-stop"), 0,
TQT_TQOBJECT(_taskView),
TQT_SLOT( stopCurrentTimer() ), actionCollection(),
"stop");
diff --git a/karm/mainwindow.cpp b/karm/mainwindow.cpp
index c9c2ef6a..cbd122c6 100644
--- a/karm/mainwindow.cpp
+++ b/karm/mainwindow.cpp
@@ -277,7 +277,7 @@ void MainWindow::makeMenus()
TQT_SLOT( startCurrentTimer() ), actionCollection(),
"start");
actionStop = new TDEAction( i18n("S&top"),
- TQString::fromLatin1("stop"), Key_S,
+ TQString::fromLatin1("process-stop"), Key_S,
TQT_TQOBJECT(_taskView),
TQT_SLOT( stopCurrentTimer() ), actionCollection(),
"stop");
diff --git a/kmail/headerlistquicksearch.cpp b/kmail/headerlistquicksearch.cpp
index 01793836..eeb8d797 100644
--- a/kmail/headerlistquicksearch.cpp
+++ b/kmail/headerlistquicksearch.cpp
@@ -70,7 +70,7 @@ HeaderListQuickSearch::HeaderListQuickSearch( TQWidget *parent,
mStatusCombo = new TQComboBox( parent, "quick search status combo box" );
mStatusCombo->setSizeLimit( 12 );
- mStatusCombo->insertItem( SmallIcon( "run" ), i18n("Any Status") );
+ mStatusCombo->insertItem( SmallIcon( "system-run" ), i18n("Any Status") );
inserStatus( StatusUnread );
inserStatus( StatusNew );
diff --git a/kmail/kmsystemtray.cpp b/kmail/kmsystemtray.cpp
index dc5cd04f..f3ff58a4 100644
--- a/kmail/kmsystemtray.cpp
+++ b/kmail/kmsystemtray.cpp
@@ -133,7 +133,7 @@ void KMSystemTray::buildPopupMenu()
action->plug( mPopupMenu );
mPopupMenu->insertSeparator();
- mPopupMenu->insertItem( SmallIcon("exit"), i18n("&Quit"), this, TQT_SLOT(maybeQuit()) );
+ mPopupMenu->insertItem( SmallIcon("system-log-out"), i18n("&Quit"), this, TQT_SLOT(maybeQuit()) );
}
void KMSystemTray::tray_quit()
diff --git a/knode/kncomposer.cpp b/knode/kncomposer.cpp
index 2756f621..ac8d9fcd 100644
--- a/knode/kncomposer.cpp
+++ b/knode/kncomposer.cpp
@@ -307,7 +307,7 @@ KNComposer::KNComposer(KNLocalArticle *a, const TQString &text, const TQString &
rot13->setEnabled(false);
connect(v_iew->e_dit, TQT_SIGNAL(copyAvailable(bool)), rot13, TQT_SLOT(setEnabled(bool)));
- a_ctExternalEditor = new TDEAction(i18n("Start &External Editor"), "run", 0, TQT_TQOBJECT(this),
+ a_ctExternalEditor = new TDEAction(i18n("Start &External Editor"), "system-run", 0, TQT_TQOBJECT(this),
TQT_SLOT(slotExternalEditor()), actionCollection(), "external_editor");
a_ctSpellCheck = KStdAction::spelling (TQT_TQOBJECT(this), TQT_SLOT(slotSpellcheck()), actionCollection());
diff --git a/knode/knmainwidget.cpp b/knode/knmainwidget.cpp
index 459b01c7..b9e3b06f 100644
--- a/knode/knmainwidget.cpp
+++ b/knode/knmainwidget.cpp
@@ -731,7 +731,7 @@ void KNMainWidget::initActions()
TQT_SLOT(slotArtEdit()), actionCollection(), "article_edit");
//network
- a_ctNetCancel = new TDEAction(i18n("Stop &Network"),"stop",0, TQT_TQOBJECT(this),
+ a_ctNetCancel = new TDEAction(i18n("Stop &Network"),"process-stop",0, TQT_TQOBJECT(this),
TQT_SLOT(slotNetCancel()), actionCollection(), "net_stop");
a_ctNetCancel->setEnabled(false);
diff --git a/knotes/knote.cpp b/knotes/knote.cpp
index 62c8efc8..dd2d7e82 100644
--- a/knotes/knote.cpp
+++ b/knotes/knote.cpp
@@ -108,7 +108,7 @@ KNote::KNote( TQDomDocument buildDoc, Journal *j, TQWidget *parent, const char *
TQT_TQOBJECT(this),TQT_SLOT(slotRequestNewNote()) , actionCollection(), "new_note" );
new TDEAction( i18n("Rename..."), "text", 0,
TQT_TQOBJECT(this), TQT_SLOT(slotRename()), actionCollection(), "rename_note" );
- m_readOnly = new TDEToggleAction( i18n("Lock"), "lock" , 0,
+ m_readOnly = new TDEToggleAction( i18n("Lock"), "system-lock-screen" , 0,
TQT_TQOBJECT(this), TQT_SLOT(slotUpdateReadOnly()), actionCollection(), "lock_note" );
m_readOnly->setCheckedState( KGuiItem( i18n("Unlock"), "unlock" ) );
new TDEAction( i18n("Hide"), "fileclose" , Key_Escape,