Suddenly noted the presence in Qt help of such a record, declaring the signal constant:
class SomeClass : public QObject { Q_OBJECT signals: void someSignal() const; ... }; In the case of slots and methods, the presence of const understandable. But in the case of the signal ... Should it be interpreted as the fact that the slot receiver should not change the object that sent the signal?