[PySide] One signal name, different arguments.

Alexey Vihorev vihorev at gmail.com
Sat Feb 2 09:27:43 CET 2013


Hi all.

I'm trying to use QCompleter class, and the problem is it has two signals
with the same name but different arguments:

 

void QCompleter::activated ( const QString
<http://qt-project.org/doc/qt-4.8/qstring.html>  & text ) [signal]

void QCompleter::activated ( const QModelIndex
<http://qt-project.org/doc/qt-4.8/qmodelindex.html>  & index ) [signal]

 

If I use it like completer.activated.connect(my_func)then my_func will get
the string argument, but I need QModelIndex. Decorating my_func with
@QtCore.Slot(QtCore.QModelIndex)did not help. Any thoughts?

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/pyside/attachments/20130202/f8912126/attachment.html>


More information about the PySide mailing list