klayout/scripts/mkqtdecl4
Matthias Koefferlein 1f60e7729e Qt signals can be bound to functions with less args in Python
With this change it is possible to bind signals to functions
accepting less arguments. For example:

    def triggered():
      ...

    b = pya.QPushButton()
    b.clicked(triggered)
    b.emit_clicked(True)

wasn't working before since triggered() gets one parameter
(checked) and the call fails. Now, additional parameters are
ignored.
2017-02-24 23:48:47 +01:00
..
allofqt.cpp Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00
mkqtdecl.conf Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00
mkqtdecl.events Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00
mkqtdecl.properties Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00