diff options
Diffstat (limited to 'src/ksimulator.h')
-rwxr-xr-x | src/ksimulator.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ksimulator.h b/src/ksimulator.h index f54f5be..03e8a10 100755 --- a/src/ksimulator.h +++ b/src/ksimulator.h @@ -20,12 +20,12 @@ #ifndef KSIMULATOR_H #define KSIMULATOR_H -#include <qobject.h> +#include <tqobject.h> #include "cpicoblaze.h" #include "cassembler.h" #include <string> -#include <qtimer.h> +#include <tqtimer.h> #include <klistview.h> #include "kprocessorview.h" @@ -34,11 +34,12 @@ #define CARRY_FLAG 0x02 #define INTERRUPT_FLAG 0x04 -class KSimulator : public QObject +class KSimulator : public TQObject { Q_OBJECT + TQ_OBJECT public: - KSimulator(QObject *parent = 0, const char *name = 0); + KSimulator(TQObject *tqparent = 0, const char *name = 0); ~KSimulator(); void setFilename( string filename ) { m_assembler->setFilename( filename ) ; } @@ -82,7 +83,7 @@ class KSimulator : public QObject private: CPicoBlaze * m_picoBlaze ; CAssembler * m_assembler ; - QTimer * m_timer ; + TQTimer * m_timer ; bool m_bInterrupt ; KListView *m_messageList ; bool m_run ; |