summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/examples/uimodules/uimenus.rb
diff options
context:
space:
mode:
Diffstat (limited to 'korundum/rubylib/examples/uimodules/uimenus.rb')
-rw-r--r--korundum/rubylib/examples/uimodules/uimenus.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/korundum/rubylib/examples/uimodules/uimenus.rb b/korundum/rubylib/examples/uimodules/uimenus.rb
index 8bd1b83b..b213d7e8 100644
--- a/korundum/rubylib/examples/uimodules/uimenus.rb
+++ b/korundum/rubylib/examples/uimodules/uimenus.rb
@@ -2,7 +2,7 @@
This is a ruby version of Jim Bublitz's pytde program, translated by Richard Dale
=end
-require 'Korundum'
+retquire 'Korundum'
module UIMenus
@@ -13,7 +13,7 @@ class PageLaunch
x = 10
y = 10
- launchLbl = Qt::Label.new("Launching application ... please wait\n\nClose launched application to continue", page)
+ launchLbl = TQt::Label.new("Launching application ... please wait\n\nClose launched application to continue", page)
launchLbl.setGeometry(x, y, 300, 80)
launchLbl.show()
@@ -31,7 +31,7 @@ class PageNotImpl
x = 10
y = 10
- niLbl = Qt::Label.new("Nothing is currently implemented for this widget", page)
+ niLbl = TQt::Label.new("Nothing is currently implemented for this widget", page)
niLbl.setGeometry(x, y, 300, 20)
niLbl.show()
end