diff options
Diffstat (limited to 'src/gvcore/threadgate.h')
-rw-r--r-- | src/gvcore/threadgate.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gvcore/threadgate.h b/src/gvcore/threadgate.h index f88fffb..57c7654 100644 --- a/src/gvcore/threadgate.h +++ b/src/gvcore/threadgate.h @@ -22,22 +22,23 @@ Copyright 2000-2004 Aurélien Gâteau #ifndef THREADGATE_H #define THREADGATE_H -#include <qobject.h> -#include <qcolor.h> +#include <tqobject.h> +#include <tqcolor.h> namespace Gwenview { -class ThreadGate : public QObject +class ThreadGate : public TQObject { Q_OBJECT + TQ_OBJECT public: static ThreadGate* instance(); - QColor color( const char* name ); + TQColor color( const char* name ); private: ThreadGate(); signals: - void signalColor( QColor&, const char* ); + void signalColor( TQColor&, const char* ); private slots: - void slotColor( QColor&, const char* ); + void slotColor( TQColor&, const char* ); }; } // namespace |