summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:15:09 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:15:09 -0500
commit81ee2aba1fee837fc72de3c70d8d643a8eef5c34 (patch)
treefbf809b23387bb118bdc4764dedcac89af4aeb35
parent32313c053eaa7d50892b6d2b67b9735f1a90b103 (diff)
downloadtdebindings-81ee2aba1fee837fc72de3c70d8d643a8eef5c34.tar.gz
tdebindings-81ee2aba1fee837fc72de3c70d8d643a8eef5c34.zip
Bring up, down, top, and bottom icons into XDG compliance
-rwxr-xr-xkorundum/rubylib/examples/RubberDoc.rb6
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