syd919 0 Junior Poster in Training

Hello Im new to qt and I have a problem, I am trying to connect a radio button to a signal and a slot that have different number of arguments,I know this is not possible, is the any way to get around it?

here is my code:

void myclass::createbutton()
{
QRadiobutton* radio= new QRadiobutton("word")
connect(radio, Signal(clicked),this,SLOT(checkedA(QRadiobutton)))
}

void myclass::checkedA(QRadiobutton* radio)
{
useranswers.push(radio); //where useranswers is a stack
}