diff options
Diffstat (limited to 'korundum/rubylib/templates/basic/systray1.rb')
-rw-r--r-- | korundum/rubylib/templates/basic/systray1.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korundum/rubylib/templates/basic/systray1.rb b/korundum/rubylib/templates/basic/systray1.rb index b3a91155..8e3189b2 100644 --- a/korundum/rubylib/templates/basic/systray1.rb +++ b/korundum/rubylib/templates/basic/systray1.rb @@ -45,7 +45,7 @@ class MainWin < KDE::MainWindow systray = KDE::SystemTray.new(self) systray.setPixmap(icons.loadIcon("process-stop", 0)) - connect(systray, SIGNAL("quitSelected()"), self, SLOT('slotQuitSelected()')) + connect(systray, TQ_SIGNAL("quitSelected()"), self, TQ_SLOT('slotQuitSelected()')) systray.show() end @@ -56,7 +56,7 @@ class MainWin < KDE::MainWindow def slotQuitSelected() @exitFlag = true - $kapp.quit() + $tdeApp.quit() end end |