summaryrefslogtreecommitdiffstats
path: root/kviewshell
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:15:38 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:15:38 -0500
commitbf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad (patch)
tree3ed05132b441352ce0bc9bdcea1fda0bfe75e392 /kviewshell
parent9d92ddd4eb00dd2a8446f9307e0f2d0690a3b723 (diff)
downloadtdegraphics-bf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad.tar.gz
tdegraphics-bf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kviewshell')
-rw-r--r--kviewshell/kviewpart.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kviewshell/kviewpart.cpp b/kviewshell/kviewpart.cpp
index a66150d4..834cfbaa 100644
--- a/kviewshell/kviewpart.cpp
+++ b/kviewshell/kviewpart.cpp
@@ -263,8 +263,8 @@ KViewPart::KViewPart(TQWidget *parentWidget, const char *widgetName, TQObject *p
gotoAct = KStdAction::gotoPage(this, TQT_SLOT(goToPage()), actionCollection());
gotoAct->setShortcut("CTRL+G");
- readUpAct = new TDEAction(i18n("Read Up Document"), "up", SHIFT+Key_Space, this, TQT_SLOT(mp_readUp()), actionCollection(), "go_read_up");
- readDownAct = new TDEAction(i18n("Read Down Document"), "down", Key_Space, this, TQT_SLOT(mp_readDown()), actionCollection(), "go_read_down");
+ readUpAct = new TDEAction(i18n("Read Up Document"), "go-up", SHIFT+Key_Space, this, TQT_SLOT(mp_readUp()), actionCollection(), "go_read_up");
+ readDownAct = new TDEAction(i18n("Read Down Document"), "go-down", Key_Space, this, TQT_SLOT(mp_readDown()), actionCollection(), "go_read_down");
printAction = KStdAction::print(this, TQT_SLOT(slotPrint()), actionCollection());