Using the old syntax, it was possible to forward a signal eg:
connect(sender, SIGNAL(valueChanged(QString,QString)), this, SIGNAL(updateValue(QString,QString)));
I like using the new Qt5 syntax. Is it possible to use the new syntax to forward a signal?