I'd like to connect a signal with one parameter of a fundamental type like
void toggled(bool checked)
void valueChanged(int i)
...
to a slot with its parameter being of type QVariant:
void setValue( QVariant &value )
Is that possible using Qt 5.14 ?