diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:51:58 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:51:58 -0500 |
commit | 965d0b09cf8c761c2027dc9412e5ffb4f47546ff (patch) | |
tree | f6feab031dbacec6ccee932ba3160f6247839aeb | |
parent | 7c7b317942da0a203cfd000ab53cd0f2891316de (diff) | |
download | tdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.tar.gz tdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.zip |
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r-- | akregator/src/actionmanagerimpl.cpp | 2 | ||||
-rw-r--r-- | certmanager/certmanager.cpp | 2 | ||||
-rw-r--r-- | karm/karm_part.cpp | 2 | ||||
-rw-r--r-- | karm/mainwindow.cpp | 2 | ||||
-rw-r--r-- | kmail/headerlistquicksearch.cpp | 2 | ||||
-rw-r--r-- | kmail/kmsystemtray.cpp | 2 | ||||
-rw-r--r-- | knode/kncomposer.cpp | 2 | ||||
-rw-r--r-- | knode/knmainwidget.cpp | 2 | ||||
-rw-r--r-- | knotes/knote.cpp | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/akregator/src/actionmanagerimpl.cpp b/akregator/src/actionmanagerimpl.cpp index 87b1ff19d..40dcc8f78 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 ea1910fc5..c818824f0 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 b46202bfd..508375084 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 c9c2ef6a2..cbd122c67 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 017938365..eeb8d797f 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 dc5cd04fb..f3ff58a49 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 2756f621a..ac8d9fcd8 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 459b01c7c..b9e3b06fe 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 62c8efc8c..dd2d7e825 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, |