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.
Hi all,
sorry to fill the board again. At the moment I'm trying to
implement a filter for my qtreeview. So far I've managed to implement a
sorter using the QSortFilterProxyModel and I'm able to sort my list by
clicking the headers in my model. However, I've not been successful
connec