Hi, I'm trying to do this:
Qt Code:
  1. connect( checkBox, SIGNAL(toggled(bool)), this, SLOT (activeOption() ));
  2. connect( checkBox2, SIGNAL(toggled(bool)), this, SLOT (activeOption() ));
To copy to clipboard, switch view to plain text mode 
problem is that check box belog to button group exclusive of 2 check box; When I active check1 start my SLOT and SLOT starts a second time because when checking the fisrt box, I de-checking the second too (is exclusive); I need something like:
connect( checkBox2, SIGNAL(checked()).....but it is not a signal?
is there a signal?
Thanks