diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:24 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:24 -0500 |
commit | 267521c81f896cfbfcf4fbff69411d189114e855 (patch) | |
tree | d0e5e7567ad3091c8821b6b1d630dddd5282401b /akregator/src | |
parent | b82f01dcfeabc12580ae11fe8cb2e6a4075da2cc (diff) | |
download | tdepim-267521c81f896cfbfcf4fbff69411d189114e855.tar.gz tdepim-267521c81f896cfbfcf4fbff69411d189114e855.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'akregator/src')
-rw-r--r-- | akregator/src/actionmanagerimpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/akregator/src/actionmanagerimpl.cpp b/akregator/src/actionmanagerimpl.cpp index 40dcc8f78..050be54f2 100644 --- a/akregator/src/actionmanagerimpl.cpp +++ b/akregator/src/actionmanagerimpl.cpp @@ -304,8 +304,8 @@ void ActionManagerImpl::initView(View* view) vm->insert(ra); // toolbar / feed menu - 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"); + new TDEAction(i18n("&Fetch Feed"), "go-down", TDEStdAccel::shortcut(TDEStdAccel::Reload), TQT_TQOBJECT(d->view), TQT_SLOT(slotFetchCurrentFeed()), actionCollection(), "feed_fetch"); + new TDEAction(i18n("Fe&tch All Feeds"), "go-bottom", "Ctrl+L", TQT_TQOBJECT(d->view), TQT_SLOT(slotFetchAllFeeds()), actionCollection(), "feed_fetch_all"); TDEAction* stopAction = new TDEAction(i18n( "&Abort Fetches" ), "process-stop", Key_Escape, Kernel::self()->fetchQueue(), TQT_SLOT(slotAbort()), actionCollection(), "feed_stop"); stopAction->setEnabled(false); |