how can i inherit from both QWidget and QThread?
- by rashid
I have a class like this
class GUI : public QWidget, public QThread
When I do the above i get errors about connect signals. The error says "Reference to "connect" is ambiguous". Is there a way to inherit from both?
Thank you