Method: Object#SLOT
- Defined in:
- lib/qt/qtruby4.rb
#SLOT(slot) ⇒ Object
2642 2643 2644 2645 2646 2647 2648 |
# File 'lib/qt/qtruby4.rb', line 2642 def SLOT(slot) if slot.kind_of? Symbol return "1" + slot.to_s + "()" else return "1" + slot end end |