Could it be that your are missing a closing character on your signal slot?
QtCore.QObject.connect(self.filterLineEdit, QtCore.SIGNAL('textChanged( QString'),self._proxyModel.setFilterRegExp)
Here
'textChanged( QString'
You are using new style signal slots in some places and old style in others. Why not just use them all the time and avoid the potential typos?
self.textChanged.connect(...)
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/7d9656e8-76ef-4f6b-8694-bb7abdfe9381%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Actually it was pretty common for me to mess up the old style signals too, by typing something wrong. So, no worries :-)
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/a30c34e1-b112-410f-84bb-1fb1375b51c1%40googlegroups.com.