2
votes
2answers
155 views
Why is Qt looking for my slot in the base class instead of derived one?
I have my class X which inherits from Qt's class Base. I declared and defined void mySlot() slot in my class X and I'm connecting some signal to this slot in X's constructor. However, when running my …
