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)