summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/debuggermanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/debuggermanager.h')
-rw-r--r--quanta/components/debugger/debuggermanager.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/quanta/components/debugger/debuggermanager.h b/quanta/components/debugger/debuggermanager.h
index f7584bdf..5a88b156 100644
--- a/quanta/components/debugger/debuggermanager.h
+++ b/quanta/components/debugger/debuggermanager.h
@@ -18,8 +18,8 @@
#ifndef PHPDEBUGGERINTERFACE_H
#define PHPDEBUGGERINTERFACE_H
-#include <qobject.h>
-#include <qstring.h>
+#include <tqobject.h>
+#include <tqstring.h>
class DebuggerClient;
class QuantaDebuggerInterface;
@@ -49,11 +49,11 @@ class DebuggerManager : public QObject
void connectBreakpointSignals(Document*);
void disconnectBreakpointSignals(Document*);
- QString m_currentFile;
+ TQString m_currentFile;
long m_currentLine;
public:
- DebuggerManager(QObject *myparent);
+ DebuggerManager(TQObject *myparent);
~DebuggerManager();
// Access to memebers
@@ -62,20 +62,20 @@ class DebuggerManager : public QObject
PathMapper * Mapper() { return m_pathmapper; };
// Breakpoints
- void haveBreakpoint (const QString& file, int line);
- void havenoBreakpoint (const QString& file, int line);
+ void haveBreakpoint (const TQString& file, int line);
+ void havenoBreakpoint (const TQString& file, int line);
void refreshBreakpoints();
// DebuggerBreakpoint *newDebuggerBreakpoint();
- DebuggerBreakpoint * findDebuggerBreakpoint(const QString& key);
- void updateBreakpointKey(const DebuggerBreakpoint &bp, const QString& newkey);
+ DebuggerBreakpoint * findDebuggerBreakpoint(const TQString& key);
+ void updateBreakpointKey(const DebuggerBreakpoint &bp, const TQString& newkey);
// Public help functions
- bool showStatus(const QString& message, bool log);
- bool setActiveLine (const QString& file, int line);
- void setMark(const QString& filename, long line, bool set, int mark);
+ bool showStatus(const TQString& message, bool log);
+ bool setActiveLine (const TQString& file, int line);
+ void setMark(const TQString& filename, long line, bool set, int mark);
- void enableAction(const QString& action, bool enable);
- void fileOpened(const QString& file);
+ void enableAction(const TQString& action, bool enable);
+ void fileOpened(const TQString& file);
bool hasClient() { return m_client != 0; };
@@ -111,10 +111,10 @@ class DebuggerManager : public QObject
void slotProfilerOpen();
// Initiation
- void slotNewProjectLoaded(const QString &, const KURL &, const KURL &);
+ void slotNewProjectLoaded(const TQString &, const KURL &, const KURL &);
// Event handling
- void slotHandleEvent(const QString &, const QString &, const QString &);
+ void slotHandleEvent(const TQString &, const TQString &, const TQString &);
private slots:
void slotBreakpointMarked(Document*, int);