summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/interfaces')
-rw-r--r--quanta/components/debugger/interfaces/debuggerclient.cpp6
-rw-r--r--quanta/components/debugger/interfaces/debuggerclient.h2
-rw-r--r--quanta/components/debugger/interfaces/debuggerinterface.cpp4
-rw-r--r--quanta/components/debugger/interfaces/debuggerinterface.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/quanta/components/debugger/interfaces/debuggerclient.cpp b/quanta/components/debugger/interfaces/debuggerclient.cpp
index 03b024f0..88b5460e 100644
--- a/quanta/components/debugger/interfaces/debuggerclient.cpp
+++ b/quanta/components/debugger/interfaces/debuggerclient.cpp
@@ -23,8 +23,8 @@
// CTor
-DebuggerClient::DebuggerClient(TQObject *tqparent, const char* name)
- : TQObject(tqparent, name)
+DebuggerClient::DebuggerClient(TQObject *parent, const char* name)
+ : TQObject(parent, name)
{
m_active = false;
}
@@ -32,7 +32,7 @@ DebuggerClient::DebuggerClient(TQObject *tqparent, const char* name)
DebuggerInterface* DebuggerClient::debuggerInterface()
{
- return static_cast<DebuggerInterface*>( tqparent()->child( 0, "DebuggerInterface" ) );
+ return static_cast<DebuggerInterface*>( parent()->child( 0, "DebuggerInterface" ) );
}
// Active state of session
diff --git a/quanta/components/debugger/interfaces/debuggerclient.h b/quanta/components/debugger/interfaces/debuggerclient.h
index 20d5b604..317ff3e3 100644
--- a/quanta/components/debugger/interfaces/debuggerclient.h
+++ b/quanta/components/debugger/interfaces/debuggerclient.h
@@ -67,7 +67,7 @@ class DebuggerClient : public TQObject
private:
protected:
- DebuggerClient(TQObject *tqparent, const char* name);
+ DebuggerClient(TQObject *parent, const char* name);
bool m_active;
diff --git a/quanta/components/debugger/interfaces/debuggerinterface.cpp b/quanta/components/debugger/interfaces/debuggerinterface.cpp
index 013aeb15..4d7beda6 100644
--- a/quanta/components/debugger/interfaces/debuggerinterface.cpp
+++ b/quanta/components/debugger/interfaces/debuggerinterface.cpp
@@ -17,8 +17,8 @@
#include "debuggerinterface.h"
-DebuggerInterface::DebuggerInterface (TQObject *tqparent, const char* name)
- : TQObject(tqparent, name)
+DebuggerInterface::DebuggerInterface (TQObject *parent, const char* name)
+ : TQObject(parent, name)
{
}
diff --git a/quanta/components/debugger/interfaces/debuggerinterface.h b/quanta/components/debugger/interfaces/debuggerinterface.h
index a93fee50..dabd685d 100644
--- a/quanta/components/debugger/interfaces/debuggerinterface.h
+++ b/quanta/components/debugger/interfaces/debuggerinterface.h
@@ -37,7 +37,7 @@ class DebuggerInterface : public TQObject
public:
- DebuggerInterface(TQObject *tqparent, const char* name);
+ DebuggerInterface(TQObject *parent, const char* name);
// Breakpoints
virtual void haveBreakpoint (const TQString& file, int line) = 0;