2011/7/24 Erik Janssens <[email protected]>: > this code always worked perfectly with PyQt. I had the assumption that > a default argument in a signal would be treated the same way as in > Python, this assumption always seemed valid using PyQt
I guess, PyQt just chooses the other overload as default if no overload was explicity selected. Since you can always use slots with less arguments than the signal (in which case superfluous arguments are simply thrown away during invocation of the slot) it makes no difference in this case. _______________________________________________ PySide mailing list [email protected] http://lists.pyside.org/listinfo/pyside
