Hello,

i have application with 160 QCheckBoxes. Is there a way to detect if any of 160 checkboxes has changed their state? I mean, is there a way to use only one connect() to detect stateChanged for any of 160 boxes? I don't want to add 160 connect() lines. Or are there any other options, other than connect()?

All checkboxes are added / created in QT Designer.

I need to detect when specific checkbox is selected, so i can disable opposite checkbox. To prevent user from accidentally selecting opposite checkboxes.