summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/progress/progress.rb
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:29:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:45:40 +0900
commitfaf33629bb6562a6f43f930afafe4b22e9cdb60b (patch)
tree8fc6dc6d999a3a039ace28db2fe5b96712fa18e0 /qtruby/rubylib/examples/qt-examples/progress/progress.rb
parent0ff7d227c65fecb4fb7482ecd679acb594ef5cf7 (diff)
downloadtdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.tar.gz
tdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtruby/rubylib/examples/qt-examples/progress/progress.rb')
-rw-r--r--qtruby/rubylib/examples/qt-examples/progress/progress.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/qtruby/rubylib/examples/qt-examples/progress/progress.rb b/qtruby/rubylib/examples/qt-examples/progress/progress.rb
index 1ec02614..3b0b11f8 100644
--- a/qtruby/rubylib/examples/qt-examples/progress/progress.rb
+++ b/qtruby/rubylib/examples/qt-examples/progress/progress.rb
@@ -118,18 +118,18 @@ class CPUWaster < TQt::Widget
FIRST_DRAW_ITEM.upto(LAST_DRAW_ITEM) {
|i| file.insertItem( "#{drawItemRects(i)} Rectangles", i)
}
- connect( menubar, SIGNAL('activated(int)'), self, SLOT('doMenuItem(int)') )
+ connect( menubar, TQ_SIGNAL('activated(int)'), self, TQ_SLOT('doMenuItem(int)') )
@file.insertSeparator
- @file.insertItem("Quit", $qApp, SLOT('quit()'))
+ @file.insertItem("Quit", $qApp, TQ_SLOT('quit()'))
@options = TQt::PopupMenu.new
@menubar.insertItem("&Options", options)
- @td_id = options.insertItem("Timer driven", self, SLOT('timerDriven()'))
- @ld_id = options.insertItem("Loop driven", self, SLOT('loopDriven()'))
+ @td_id = options.insertItem("Timer driven", self, TQ_SLOT('timerDriven()'))
+ @ld_id = options.insertItem("Loop driven", self, TQ_SLOT('loopDriven()'))
@options.insertSeparator
- @dl_id = options.insertItem("Default label", self, SLOT('defaultLabel()'))
- @cl_id = options.insertItem("Custom label", self, SLOT('customLabel()'))
+ @dl_id = options.insertItem("Default label", self, TQ_SLOT('defaultLabel()'))
+ @cl_id = options.insertItem("Custom label", self, TQ_SLOT('customLabel()'))
@options.insertSeparator
- @md_id = options.insertItem("No minimum duration", self, SLOT('toggleMinimumDuration()'))
+ @md_id = options.insertItem("No minimum duration", self, TQ_SLOT('toggleMinimumDuration()'))
@options.setCheckable true
loopDriven
@@ -239,7 +239,7 @@ class CPUWaster < TQt::Widget
@rects = n
@pb = newProgressDialog("Drawing rectangles.\nUsing timer event.", n, false)
@pb.setCaption("Please Wait")
- connect(@pb, SIGNAL('cancelled()'), self, SLOT('stopDrawing()'))
+ connect(@pb, TQ_SIGNAL('cancelled()'), self, TQ_SLOT('stopDrawing()'))
enableDrawingItems(false)
startTimer(0)
@got_stop = false