I have several QDoubleSpinBoxes and I want connect them to one Slot. It is possible to make one connect-command, for more than one object? for exampe, I want to connect:
doubleSpinBox_1
doubleSpinBox_2
to my function "bla". Is there any command like:
self."doubleSpinBox_1 **AND** _2".valueChanged.connect(self.bla)
?