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 /akregator/src | |
parent | 7c7b317942da0a203cfd000ab53cd0f2891316de (diff) | |
download | tdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.tar.gz tdepim-965d0b09cf8c761c2027dc9412e5ffb4f47546ff.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'akregator/src')
-rw-r--r-- | akregator/src/actionmanagerimpl.cpp | 2 |
1 files changed, 1 insertions, 1 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"); |