summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/debuggerbreakpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/debuggerbreakpoint.cpp')
-rw-r--r--quanta/components/debugger/debuggerbreakpoint.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/quanta/components/debugger/debuggerbreakpoint.cpp b/quanta/components/debugger/debuggerbreakpoint.cpp
index ae8ed6cb..d19c299d 100644
--- a/quanta/components/debugger/debuggerbreakpoint.cpp
+++ b/quanta/components/debugger/debuggerbreakpoint.cpp
@@ -47,7 +47,7 @@ DebuggerBreakpoint::DebuggerBreakpoint( const DebuggerBreakpoint * bp )
}
-DebuggerBreakpoint::DebuggerBreakpoint(const QString& filePath, int line)
+DebuggerBreakpoint::DebuggerBreakpoint(const TQString& filePath, int line)
{
m_filePath = filePath;
m_line = line;
@@ -56,8 +56,8 @@ DebuggerBreakpoint::DebuggerBreakpoint(const QString& filePath, int line)
}
DebuggerBreakpoint::DebuggerBreakpoint(const Types type,
- const QString& conditionExpr, const QString& filePath,
- const QString& inClass, const QString& inFunction)
+ const TQString& conditionExpr, const TQString& filePath,
+ const TQString& inClass, const TQString& inFunction)
{
m_conditionExpr = conditionExpr;
m_filePath = filePath;
@@ -71,17 +71,17 @@ DebuggerBreakpoint::DebuggerBreakpoint(const Types type,
DebuggerBreakpoint::~DebuggerBreakpoint()
{}
-void DebuggerBreakpoint::setFilePath(const QString& filePath)
+void DebuggerBreakpoint::setFilePath(const TQString& filePath)
{
m_filePath = filePath;
}
-void DebuggerBreakpoint::setClass(const QString& newclass)
+void DebuggerBreakpoint::setClass(const TQString& newclass)
{
m_class = newclass;
}
-void DebuggerBreakpoint::setFunction(const QString& function)
+void DebuggerBreakpoint::setFunction(const TQString& function)
{
m_function = function;
}
@@ -91,12 +91,12 @@ void DebuggerBreakpoint::setLine(int line)
m_line = line;
}
-void DebuggerBreakpoint::setCondition(const QString& expression)
+void DebuggerBreakpoint::setCondition(const TQString& expression)
{
m_conditionExpr = expression;
}
-void DebuggerBreakpoint::setValue(const QString& value)
+void DebuggerBreakpoint::setValue(const TQString& value)
{
m_value = value;
}
@@ -111,31 +111,31 @@ void DebuggerBreakpoint::setType(DebuggerBreakpoint::Types type )
m_type = type;
}
-void DebuggerBreakpoint::setKey(const QString& value)
+void DebuggerBreakpoint::setKey(const TQString& value)
{
m_key = value;
}
-const QString& DebuggerBreakpoint::key() const
+const TQString& DebuggerBreakpoint::key() const
{
return m_key;
}
-const QString& DebuggerBreakpoint::filePath() const
+const TQString& DebuggerBreakpoint::filePath() const
{
return m_filePath;
}
-const QString& DebuggerBreakpoint::value() const
+const TQString& DebuggerBreakpoint::value() const
{
return m_value;
}
-const QString& DebuggerBreakpoint::inClass() const
+const TQString& DebuggerBreakpoint::inClass() const
{
return m_class;
}
-const QString& DebuggerBreakpoint::inFunction() const
+const TQString& DebuggerBreakpoint::inFunction() const
{
return m_function;
}
@@ -150,7 +150,7 @@ int DebuggerBreakpoint::line() const
return m_line;
}
-const QString& DebuggerBreakpoint::condition() const
+const TQString& DebuggerBreakpoint::condition() const
{
return m_conditionExpr;
}