I am trying to connect a three combobox with a slot, but it is showing error at the "&QComboBox::currentIndexChanged", wihtout & also an error.
connect(ptrcomboBox1, &QComboBox::currentIndexChanged, this, &DynRefWizardPage::on_comboBox_currentIndexChanged);
connect(ptrcomboBox2, &QComboBox::currentIndexChanged, this, &DynRefWizardPage::on_comboBox_currentIndexChanged);
connect(ptrcomboBox3, &QComboBox::currentIndexChanged, this, &DynRefWizardPage::on_comboBox_currentIndexChanged);
Please i could not understand the sytax provided in the documentation, could anyone provide me with the syntax with my case?