summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/interfaces/debuggerclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/interfaces/debuggerclient.h')
-rw-r--r--quanta/components/debugger/interfaces/debuggerclient.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/quanta/components/debugger/interfaces/debuggerclient.h b/quanta/components/debugger/interfaces/debuggerclient.h
index d50526cc..1966039f 100644
--- a/quanta/components/debugger/interfaces/debuggerclient.h
+++ b/quanta/components/debugger/interfaces/debuggerclient.h
@@ -18,10 +18,10 @@
#ifndef _DEBUGGERCLIENT_H
#define _DEBUGGERCLIENT_H
-#include <qserversocket.h>
-#include <qobject.h>
+#include <tqserversocket.h>
+#include <tqobject.h>
#include <kurl.h>
-#include <qdom.h>
+#include <tqdom.h>
#include "debuggerui.h"
@@ -66,7 +66,7 @@ class DebuggerClient : public QObject
private:
protected:
- DebuggerClient(QObject *parent, const char* name);
+ DebuggerClient(TQObject *parent, const char* name);
bool m_active;
@@ -74,7 +74,7 @@ class DebuggerClient : public QObject
virtual const uint supports(DebuggerClientCapabilities::Capabilities) = 0;
virtual void startSession() = 0;
virtual void endSession() = 0;
- virtual QString getName() = 0;
+ virtual TQString getName() = 0;
// Execution control
virtual void request();
@@ -88,21 +88,21 @@ class DebuggerClient : public QObject
virtual void pause();
// Settings
- virtual void readConfig(QDomNode node);
- virtual void showConfig(QDomNode node);
+ virtual void readConfig(TQDomNode node);
+ virtual void showConfig(TQDomNode node);
// Profiler
virtual void profilerOpen();
// Misc
- virtual void fileOpened(const QString& file);
+ virtual void fileOpened(const TQString& file);
virtual void addBreakpoint(DebuggerBreakpoint* breakpoint);
virtual void removeBreakpoint(DebuggerBreakpoint* breakpoint);
- virtual void addWatch(const QString &);
+ virtual void addWatch(const TQString &);
virtual void removeWatch(DebuggerVariable*);
virtual void variableSetValue(const DebuggerVariable &variable);
- void unSupportedAction(const QString &action);
+ void unSupportedAction(const TQString &action);
bool isActive();
DebuggerInterface *debuggerInterface();