Quote Originally Posted by gQt View Post
Is it possible to subclass a noneGui class instead of QDialog?
Both QObject and QTimer are contained in the QtCore module. You can simply inherit your class from QObject instead.
Qt Code:
  1. class Client: public QObject
  2. {
  3. Q_OBJECT
  4. }
To copy to clipboard, switch view to plain text mode