how can i inherit from both QWidget and QThread?

Posted by rashid on Stack Overflow See other posts from Stack Overflow or by rashid
Published on 2010-04-07T20:54:56Z Indexed on 2010/04/07 21:03 UTC
Read the original article Hit count: 286

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about qt

Related posts about qthread