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