summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/tutorials/p1/p1.rb
diff options
context:
space:
mode:
Diffstat (limited to 'korundum/rubylib/tutorials/p1/p1.rb')
-rw-r--r--korundum/rubylib/tutorials/p1/p1.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/korundum/rubylib/tutorials/p1/p1.rb b/korundum/rubylib/tutorials/p1/p1.rb
index f06c6b3e..a32edb7a 100644
--- a/korundum/rubylib/tutorials/p1/p1.rb
+++ b/korundum/rubylib/tutorials/p1/p1.rb
@@ -5,7 +5,7 @@ require 'Qt'
hello = TQt::PushButton.new( "Hello world!", nil )
hello.resize( 100, 30 )
- TQt::Object::connect( hello, SIGNAL('clicked()'), a, SLOT('quit()') )
+ TQt::Object::connect( hello, TQ_SIGNAL('clicked()'), a, TQ_SLOT('quit()') )
a.setMainWidget( hello )
hello.show()