diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:19 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:19 -0500 |
commit | 1fe73538bc94f7beff87fd6a7d0cd3b2114cc47f (patch) | |
tree | 99e19b44c6c213d805a0e4d4368b7799b6b2218b | |
parent | 621a04f06e663f64ee86a68bbbe57c40dec32cab (diff) | |
download | tdebindings-1fe73538bc94f7beff87fd6a7d0cd3b2114cc47f.tar.gz tdebindings-1fe73538bc94f7beff87fd6a7d0cd3b2114cc47f.zip |
Bring previous and next icons into XDG compliance
-rwxr-xr-x | korundum/rubylib/examples/RubberDoc.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korundum/rubylib/examples/RubberDoc.rb b/korundum/rubylib/examples/RubberDoc.rb index a5cc35cb..f16fd9dc 100755 --- a/korundum/rubylib/examples/RubberDoc.rb +++ b/korundum/rubylib/examples/RubberDoc.rb @@ -205,9 +205,9 @@ module MyGui self, SLOT("go_forward()"), @main.actionCollection, "forward" KDE::Action.new "&Home", "gohome", KDE::Shortcut.new(TQt::Key_Home), self, SLOT("go_home()"), @main.actionCollection, "home" - KDE::Action.new "&Prev Match", "previous",KDE::Shortcut.new(TQt::CTRL + TQt::Key_P), + KDE::Action.new "&Prev Match", "go-previous",KDE::Shortcut.new(TQt::CTRL + TQt::Key_P), self, SLOT("goto_prev_match()"), @main.actionCollection, "prev_match" - KDE::Action.new "&Next Match", "next", KDE::Shortcut.new(TQt::CTRL + TQt::Key_N), + KDE::Action.new "&Next Match", "go-next", KDE::Shortcut.new(TQt::CTRL + TQt::Key_N), self, SLOT("goto_next_match()"), @main.actionCollection, "next_match" KDE::Action.new "&Follow Match","down", KDE::Shortcut.new(TQt::Key_Return), self, SLOT("goto_current_match_link()"), @main.actionCollection, "open_match" |