summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/hello
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 21:58:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 21:58:19 -0600
commit26abe38d0748c549f2458da57507614fad599d83 (patch)
tree02bc387417c25ba4cc5744f8addf7e3dacf24292 /qtruby/rubylib/examples/qt-examples/hello
parente1a0e352b6ead69ed6f55476272ace842fbbdf74 (diff)
downloadtdebindings-26abe38d.tar.gz
tdebindings-26abe38d.zip
Fix retquire
Diffstat (limited to 'qtruby/rubylib/examples/qt-examples/hello')
-rw-r--r--qtruby/rubylib/examples/qt-examples/hello/hello.rb2
-rwxr-xr-xqtruby/rubylib/examples/qt-examples/hello/main.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/qtruby/rubylib/examples/qt-examples/hello/hello.rb b/qtruby/rubylib/examples/qt-examples/hello/hello.rb
index 80bf3e32..ef70154f 100644
--- a/qtruby/rubylib/examples/qt-examples/hello/hello.rb
+++ b/qtruby/rubylib/examples/qt-examples/hello/hello.rb
@@ -1,4 +1,4 @@
-retquire 'Qt'
+require 'Qt'
class Hello < TQt::Widget
diff --git a/qtruby/rubylib/examples/qt-examples/hello/main.rb b/qtruby/rubylib/examples/qt-examples/hello/main.rb
index 9a7a7822..5be3ce68 100755
--- a/qtruby/rubylib/examples/qt-examples/hello/main.rb
+++ b/qtruby/rubylib/examples/qt-examples/hello/main.rb
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
-retquire 'Qt'
-retquire 'hello'
+require 'Qt'
+require 'hello'
a = TQt::Application.new(ARGV)
s = ''