summaryrefslogtreecommitdiffstats
path: root/kghostview
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 /kghostview
parent9d92ddd4eb00dd2a8446f9307e0f2d0690a3b723 (diff)
downloadtdegraphics-bf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad.tar.gz
tdegraphics-bf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kghostview')
-rw-r--r--kghostview/kgv_view.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kghostview/kgv_view.cpp b/kghostview/kgv_view.cpp
index 39997eb5..225cebb0 100644
--- a/kghostview/kgv_view.cpp
+++ b/kghostview/kgv_view.cpp
@@ -298,13 +298,13 @@ KGVPart::KGVPart( TQWidget* parentWidget, const char*,
TDEShortcut readUpShort = TDEStdAccel::shortcut( TDEStdAccel::Prior );
readUpShort.append( KKey( SHIFT+Key_Space ) );
- _readUp = new TDEAction( i18n( "Read Up" ), "up",
+ _readUp = new TDEAction( i18n( "Read Up" ), "go-up",
readUpShort, this, TQT_SLOT( slotReadUp() ),
actionCollection(), "readUp" );
TDEShortcut readDownShort = TDEStdAccel::shortcut( TDEStdAccel::Next );
readDownShort.append( KKey( Key_Space ) );
- _readDown = new TDEAction( i18n( "Read Down" ), "down",
+ _readDown = new TDEAction( i18n( "Read Down" ), "go-down",
readDownShort, this, TQT_SLOT( slotReadDown() ),
actionCollection(), "readDown" );