diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:15:09 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:15:09 -0500 |
commit | 81ee2aba1fee837fc72de3c70d8d643a8eef5c34 (patch) | |
tree | fbf809b23387bb118bdc4764dedcac89af4aeb35 /korundum/rubylib/examples | |
parent | 32313c053eaa7d50892b6d2b67b9735f1a90b103 (diff) | |
download | tdebindings-81ee2aba1fee837fc72de3c70d8d643a8eef5c34.tar.gz tdebindings-81ee2aba1fee837fc72de3c70d8d643a8eef5c34.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'korundum/rubylib/examples')
-rwxr-xr-x | korundum/rubylib/examples/RubberDoc.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korundum/rubylib/examples/RubberDoc.rb b/korundum/rubylib/examples/RubberDoc.rb index f16fd9dc..4bfea316 100755 --- a/korundum/rubylib/examples/RubberDoc.rb +++ b/korundum/rubylib/examples/RubberDoc.rb @@ -209,7 +209,7 @@ module MyGui self, SLOT("goto_prev_match()"), @main.actionCollection, "prev_match" 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), + KDE::Action.new "&Follow Match","go-down", KDE::Shortcut.new(TQt::Key_Return), self, SLOT("goto_current_match_link()"), @main.actionCollection, "open_match" KDE::Action.new "Search", "find", KDE::Shortcut.new(TQt::Key_F6), @@ -663,7 +663,7 @@ class ProjectEditDialog < TQt::Object @url = KDE::LineEdit.new lochbox urllabel.setBuddy @url locselc = TQt::PushButton.new lochbox - locselc.setIconSet SmallIconSet["up"] + locselc.setIconSet SmallIconSet["go-up"] blub = TQt::HBox.new vbox TQt::Label.new "Is main one?:", blub @@ -773,7 +773,7 @@ class ProjectSelectDialog < TQt::Object @parent.projects_data.project_list.keys.each { |name| enabled = (name == @parent.projects_data.enabled_name) - icon = enabled ? "forward" : "down" + icon = enabled ? "forward" : "go-down" pm = SmallIconSet[icon].pixmap(TQt::IconSet::Automatic, TQt::IconSet::Normal) it = TQt::ListBoxPixmap.new pm, name @listbox.insertItem it |