From 81ee2aba1fee837fc72de3c70d8d643a8eef5c34 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 00:15:09 -0500 Subject: Bring up, down, top, and bottom icons into XDG compliance --- korundum/rubylib/examples/RubberDoc.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'korundum/rubylib') 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 -- cgit v1.2.1