summaryrefslogtreecommitdiffstats
path: root/src/progs/manager/debug_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/progs/manager/debug_manager.h')
-rw-r--r--src/progs/manager/debug_manager.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/progs/manager/debug_manager.h b/src/progs/manager/debug_manager.h
index 90b8584..1598287 100644
--- a/src/progs/manager/debug_manager.h
+++ b/src/progs/manager/debug_manager.h
@@ -9,7 +9,7 @@
#ifndef DEBUG_MANAGER_H
#define DEBUG_MANAGER_H
-#include <qtimer.h>
+#include <tqtimer.h>
#include "common/global/log.h"
#include "common/global/purl.h"
@@ -24,9 +24,10 @@ namespace CDB { class Object; }
namespace Debugger
{
-class Manager : public QObject, public Log::Base, public GenericView
+class Manager : public TQObject, public Log::Base, public GenericView
{
Q_OBJECT
+ TQ_OBJECT
public:
Manager();
virtual ~Manager();
@@ -58,13 +59,13 @@ public slots:
void stopWatchAll();
signals:
- void statusChanged(const QString &text);
+ void statusChanged(const TQString &text);
void targetStateChanged();
- void actionMessage(const QString &text);
+ void actionMessage(const TQString &text);
protected:
Coff::TextObject *_coff;
- QMap<PURL::Url, uint> _currentSourceLines;
+ TQMap<PURL::Url, uint> _currentSourceLines;
void freeActiveBreakpoint();
bool checkBreakpoint(const Breakpoint::Data &bdata, bool onlyWarn, Address &address);
@@ -81,11 +82,11 @@ private slots:
private:
const Device::Data *_data;
- QTimer _runTimer, _stepTimer;
- QValueList<Register::TypeData> _readRegisters;
+ TQTimer _runTimer, _stepTimer;
+ TQValueList<Register::TypeData> _readRegisters;
void computeBreakpointAddresses();
- QValueList<Address> activeBreakpointAddresses() const;
+ TQValueList<Address> activeBreakpointAddresses() const;
void updateBreakpointsDisplay();
virtual void updateView() { updateView(false); }
virtual void updateView(bool gotoPC) = 0;