Qt 5.9 slot naming bug

256 Views Asked by At

I'm using Qt 5.9.

I've a problem declaring slots with underscore style in particular when I name it with more then 2 underscores.For example with a void on_stop_treatment() slot, even I don't make a connection, I get QMetaObject::connectSlotsByName: No matching signal for on_stop_treatment().

Anyway, making a connection, even if I get the same message, the slot signal mechanism works. Removing the second underscore I get no error message and the mechanism works. (I also tried deleting the moc file and rebuild)

1

There are 1 best solutions below

4
On BEST ANSWER

Declaring your slot with the name on_stop_treatment will clash with the Qt feature called Signal/Slot Automatic Connections

Qt will detect this specific syntax for your slot, and will try to match stop with a QObject named stop and treatment with a signal of that name declared in the class of the QObject.

To achieve this, Qt uses internally QMetaObject::connectSlotsByName(this); to perform automatic signal/slot connections.