How do I process a signal of in a subclass? Let's say my subclass is derived from QTextEdit
and is interested in the signal textChanged
. It seems silly to connect an object to itself, I should be able to simply override the textChange
method -- but it isn't virtual
.
What is the accepted way to do this?