593 594 595 596 597 598 599 600 601
# File 'lib/ruber/qt_sugar.rb', line 593 def each_signal if block_given? method_count.times do |i| m = method i yield m if m.method_type == Qt::MetaMethod::Signal end else self.enum_for(:each_signal) end end