aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pysideslot.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Initia QtCore port to python3.Renato Filho2012-03-081-5/+4
|
* Fix indentation.Renato Filho2012-03-081-2/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Does not use normalizeSignature in functions with return type.Renato Filho2012-03-081-3/+5
| | | | | | | Fix bug #726. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Raise error when slot argument is unknown.Lauro Neto2012-03-081-0/+3
| | | | | | | | | | | | | | | | | | | Instead of accepting it silently and generating potential segfault and undefined behavior, raise TypeError when the type of an argument is unknown to PySide type system. An example of such erratic behavior is in declarations like: @Slot def foo(self): Slots without arguments must be explicitly declared this way: @Slot() def foo(self): Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Hugo Lima <hugo.lima@openbossa.org>
* Moved pyside slot attr name do pysideslot_p.h.Hugo Parente Lima2012-03-081-0/+1
|
* Fixed dynamic meta object to avoid empty meta method.Hugo Parente Lima2012-03-081-0/+1
| | | | | | Empty meta methods cause a assert failure on QtDeclarative module. Also removed the scoped pointer to avoid heap allocation when it's not needed, as QByteArray is already implicity shared.
* Renamed qsignal, qslot, qproperty files to pyside*.renatofilho2010-11-031-0/+196
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>