From 9ba04742771370f59740e32e11c5f3a1e6a1b70a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 15:55:57 -0600 Subject: Initial TQt conversion --- qtruby/rubylib/tutorial/t1/t1.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qtruby/rubylib/tutorial/t1/t1.rb') diff --git a/qtruby/rubylib/tutorial/t1/t1.rb b/qtruby/rubylib/tutorial/t1/t1.rb index 19d8a029..1f2da715 100755 --- a/qtruby/rubylib/tutorial/t1/t1.rb +++ b/qtruby/rubylib/tutorial/t1/t1.rb @@ -1,10 +1,10 @@ #!/usr/bin/env ruby $VERBOSE = true; $:.unshift File.dirname($0) -require 'Qt' +retquire 'Qt' -a = Qt::Application.new(ARGV) -hello = Qt::PushButton.new('Hello World!', nil) +a = TQt::Application.new(ARGV) +hello = TQt::PushButton.new('Hello World!', nil) hello.resize(100, 30) a.setMainWidget(hello) hello.show() -- cgit v1.2.3