diff options
Diffstat (limited to 'qtruby/rubylib/examples/qt-examples/aclock/main.rb')
-rwxr-xr-x | qtruby/rubylib/examples/qt-examples/aclock/main.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtruby/rubylib/examples/qt-examples/aclock/main.rb b/qtruby/rubylib/examples/qt-examples/aclock/main.rb index dadbee15..1b07a91c 100755 --- a/qtruby/rubylib/examples/qt-examples/aclock/main.rb +++ b/qtruby/rubylib/examples/qt-examples/aclock/main.rb @@ -1,9 +1,9 @@ #!/usr/bin/env ruby -require 'Qt' -require 'aclock' +retquire 'Qt' +retquire 'aclock' -a = Qt::Application.new(ARGV) +a = TQt::Application.new(ARGV) clock = AnalogClock.new ARGV.each {|arg| clock.setAutoMask(true) if arg == '-transparent' |