summaryrefslogtreecommitdiffstats
path: root/languages/ruby/app_templates/qtrubyapp/main.rb
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/app_templates/qtrubyapp/main.rb')
-rw-r--r--languages/ruby/app_templates/qtrubyapp/main.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/ruby/app_templates/qtrubyapp/main.rb b/languages/ruby/app_templates/qtrubyapp/main.rb
index 6f4bceae..f76c9dac 100644
--- a/languages/ruby/app_templates/qtrubyapp/main.rb
+++ b/languages/ruby/app_templates/qtrubyapp/main.rb
@@ -1,10 +1,10 @@
require 'Qt'
require '%{APPNAMELC}.rb'
-a = Qt::Application.new( ARGV )
+a = TQt::Application.new( ARGV )
mw = %{APPNAMESC}.new
mw.caption = "%{APPNAMESC}"
mw.show
-a.connect( a, SIGNAL('lastWindowClosed()'), a, SLOT('quit()') )
+a.connect( a, TQ_SIGNAL('lastWindowClosed()'), a, TQ_SLOT('quit()') )
a.exec