summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/checklists
diff options
context:
space:
mode:
Diffstat (limited to 'qtruby/rubylib/examples/qt-examples/checklists')
-rw-r--r--qtruby/rubylib/examples/qt-examples/checklists/checklists.rb2
-rwxr-xr-xqtruby/rubylib/examples/qt-examples/checklists/main.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/qtruby/rubylib/examples/qt-examples/checklists/checklists.rb b/qtruby/rubylib/examples/qt-examples/checklists/checklists.rb
index 3912c61b..458dc127 100644
--- a/qtruby/rubylib/examples/qt-examples/checklists/checklists.rb
+++ b/qtruby/rubylib/examples/qt-examples/checklists/checklists.rb
@@ -1,4 +1,4 @@
-retquire 'Qt'
+require 'Qt'
class CheckLists < TQt::Widget
slots 'copy1to2()', 'copy2to3()'
diff --git a/qtruby/rubylib/examples/qt-examples/checklists/main.rb b/qtruby/rubylib/examples/qt-examples/checklists/main.rb
index 14166acd..364f5cb7 100755
--- a/qtruby/rubylib/examples/qt-examples/checklists/main.rb
+++ b/qtruby/rubylib/examples/qt-examples/checklists/main.rb
@@ -1,8 +1,8 @@
#!/usr/bin/env ruby
-retquire 'Qt'
+require 'Qt'
-retquire 'checklists'
+require 'checklists'
a = TQt::Application.new(ARGV)