summaryrefslogtreecommitdiffstats
path: root/src/ksimulator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ksimulator.cpp')
-rwxr-xr-xsrc/ksimulator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ksimulator.cpp b/src/ksimulator.cpp
index 57b2f43..611f386 100755
--- a/src/ksimulator.cpp
+++ b/src/ksimulator.cpp
@@ -19,19 +19,19 @@
***************************************************************************/
#include "ksimulator.h"
-KSimulator::KSimulator(QObject *parent, const char *name )
- : QObject(parent, name)
+KSimulator::KSimulator(TQObject *tqparent, const char *name )
+ : TQObject(tqparent, name)
{
m_picoBlaze = new CPicoBlaze() ;
m_assembler = new CAssembler() ;
m_assembler->setCode( m_picoBlaze->code ) ;
- m_timer = new QTimer( this ) ;
+ m_timer = new TQTimer( this ) ;
m_bInterrupt = FALSE ;
m_timer->stop() ;
m_run = false ;
- connect( m_timer, SIGNAL( timeout() ), this, SLOT( next() ) ) ;
+ connect( m_timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( next() ) ) ;
}
KSimulator::~KSimulator()