summaryrefslogtreecommitdiffstats
path: root/languages/lib/debugger/Mainpage.dox
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 13:57:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 13:57:48 +0900
commitd2728dd8dbad48f045a5eca1899924df15633a89 (patch)
tree451778bfeb320b91a89045f80c4768b1bfbd6626 /languages/lib/debugger/Mainpage.dox
parenta97b6afffb6ad7624b2d936a9f32056c7b6dd831 (diff)
downloadtdevelop-d2728dd8dbad48f045a5eca1899924df15633a89.tar.gz
tdevelop-d2728dd8dbad48f045a5eca1899924df15633a89.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/lib/debugger/Mainpage.dox')
-rw-r--r--languages/lib/debugger/Mainpage.dox12
1 files changed, 6 insertions, 6 deletions
diff --git a/languages/lib/debugger/Mainpage.dox b/languages/lib/debugger/Mainpage.dox
index 90c16a2a..3e0641a9 100644
--- a/languages/lib/debugger/Mainpage.dox
+++ b/languages/lib/debugger/Mainpage.dox
@@ -16,12 +16,12 @@ an instance of @ref Debugger class and connect its Q_SIGNALS, for example:
@code
m_debugger = new Debugger( partController() );
-connect( m_debugger, SIGNAL(toggledBreakpoint(const QString &, int)),
- debuggerBreakpointWidget, SLOT(slotToggleBreakpoint(const QString &, int)) );
-connect( m_debugger, SIGNAL(editedBreakpoint(const QString &, int)),
- debuggerBreakpointWidget, SLOT(slotEditBreakpoint(const QString &, int)) );
-connect( m_debugger, SIGNAL(toggledBreakpointEnabled(const QString &, int)),
- debuggerBreakpointWidget, SLOT(slotToggleBreakpointEnabled(const QString &, int)) );
+connect( m_debugger, SIGNAL(toggledBreakpoint(const TQString &, int)),
+ debuggerBreakpointWidget, SLOT(slotToggleBreakpoint(const TQString &, int)) );
+connect( m_debugger, SIGNAL(editedBreakpoint(const TQString &, int)),
+ debuggerBreakpointWidget, SLOT(slotEditBreakpoint(const TQString &, int)) );
+connect( m_debugger, SIGNAL(toggledBreakpointEnabled(const TQString &, int)),
+ debuggerBreakpointWidget, SLOT(slotToggleBreakpointEnabled(const TQString &, int)) );
@endcode
Then m_debugger instance can be used for example, to jump to the execution point:
@code