[PySide]How to emit a multi-arguments signal.
Dear community,
I got a TypeError: findPrevious(QString) only accepts 1 arguments, 3 given!
but, I want to emit a multi-arguments signal.
How can I do it?
- def findClicked(self):
- text = self.lineEdit.text()
- if self.caseCheckBox.isChecked:
- else:
- if self.backwardCheckBox.isChecked:
- self.findPrevious.emit(text, cs)
- else:
- self.findNext.emit(text, cs)
2 replies
You must log in to post a reply. Not a member yet? Register here!

