summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/templates
diff options
context:
space:
mode:
Diffstat (limited to 'korundum/rubylib/templates')
-rw-r--r--korundum/rubylib/templates/annotated/systray1.rb2
-rw-r--r--korundum/rubylib/templates/basic/systray1.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/korundum/rubylib/templates/annotated/systray1.rb b/korundum/rubylib/templates/annotated/systray1.rb
index 15ab2328..10bdb5c8 100644
--- a/korundum/rubylib/templates/annotated/systray1.rb
+++ b/korundum/rubylib/templates/annotated/systray1.rb
@@ -59,7 +59,7 @@ class MainWin < KDE::MainWindow
# KDE::SystemTray hides or shows its parent when the system tray icon is clicked
systray = KDE::SystemTray.new(self)
- systray.setPixmap(icons.loadIcon("stop", 0))
+ systray.setPixmap(icons.loadIcon("process-stop", 0))
connect(systray, SIGNAL("quitSelected()"), self, SLOT('slotQuitSelected()'))
systray.show()
end
diff --git a/korundum/rubylib/templates/basic/systray1.rb b/korundum/rubylib/templates/basic/systray1.rb
index b1e5e09b..b3a91155 100644
--- a/korundum/rubylib/templates/basic/systray1.rb
+++ b/korundum/rubylib/templates/basic/systray1.rb
@@ -44,7 +44,7 @@ class MainWin < KDE::MainWindow
icons = KDE::IconLoader.new()
systray = KDE::SystemTray.new(self)
- systray.setPixmap(icons.loadIcon("stop", 0))
+ systray.setPixmap(icons.loadIcon("process-stop", 0))
connect(systray, SIGNAL("quitSelected()"), self, SLOT('slotQuitSelected()'))
systray.show()
end