603 604 605 606 607 608 609 610 611
# File 'lib/ruber/qt_sugar.rb', line 603 def each_slot if block_given? method_count.times do |i| m = method i yield m if m.method_type == Qt::MetaMethod::Slot end else self.enum_for(:each_slot) end end