I have a GUI done with designer (qt4)

it has a groupbox: theGroup
it has some radiobuttons: radio0, radio1, radio2;
it has a listwidget: monitor

then i've created a class MyClass which is derived from the gui.

I try to create a connection:
Qt Code:
  1. void theGroup::on_theGroup_clecked(bool )
  2. {
  3. qDebug("done.");
  4. }
To copy to clipboard, switch view to plain text mode 

the result is that there is no msg on the console.
Then i tried to connect the radiobutton signal with a slot i've created and it works fine. I am lost.