Hi, I'd like to know if there's a way to do this below with ONE connect :
Qt Code:
  1. connect(buttonGroupLL, SIGNAL(clicked(int)), tabWidget3, SLOT(EnableTab(int)); //??enableTab?
  2. connect(buttonGroupLL, SIGNAL(toggled(bool)), tabWidget3, SLOT(setEnabled(bool));
To copy to clipboard, switch view to plain text mode 
In other word: I've 3 checkBox that when they're clicked, they have to enable tab1,tab2,tab3 (tabs of tabWidget3).
Wich is the best way to do this? Thanks