diff options
Diffstat (limited to 'korundum/rubylib/templates/annotated/systray1.rb')
| -rw-r--r-- | korundum/rubylib/templates/annotated/systray1.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/korundum/rubylib/templates/annotated/systray1.rb b/korundum/rubylib/templates/annotated/systray1.rb index 10bdb5c8..741a84d3 100644 --- a/korundum/rubylib/templates/annotated/systray1.rb +++ b/korundum/rubylib/templates/annotated/systray1.rb @@ -60,7 +60,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("process-stop", 0)) -        connect(systray, SIGNAL("quitSelected()"), self, SLOT('slotQuitSelected()')) +        connect(systray, TQ_SIGNAL("quitSelected()"), self, TQ_SLOT('slotQuitSelected()'))          systray.show()  	end @@ -74,7 +74,7 @@ class MainWin < KDE::MainWindow      # system tray icon's menu      def slotQuitSelected()          @exitFlag = true -        $kapp.quit() +        $tdeApp.quit()  	end  end | 
