A typical line I often need is
connect(thread, SIGNAL(started()), this->actExecute, SLOT(setDisabled(>>bool<<)));
But afaik you can't connect signals/slots with different signatures.
It's often recommended to use a helper method to trigger/emit a custom signal which passes true/false, but I have a lot of actions which needs to get disabled/enabled on thread start/stop/other, so I want to avoid writing dozens of helper functions/signals.
Is there a better way (maybe a single-line solution)?