diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 00:15:38 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 00:15:38 -0500 |
commit | bf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad (patch) | |
tree | 3ed05132b441352ce0bc9bdcea1fda0bfe75e392 /kghostview | |
parent | 9d92ddd4eb00dd2a8446f9307e0f2d0690a3b723 (diff) | |
download | tdegraphics-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.cpp | 4 |
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" ); |