summaryrefslogtreecommitdiffstats
path: root/languages/lib/debugger/Mainpage.dox
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
commit35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c (patch)
treebb3c7d39dd8592f3676cbd663a3cc42c7b288b41 /languages/lib/debugger/Mainpage.dox
parent59f10590f7686267df6e294111a2ff5661089026 (diff)
downloadtdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.tar.gz
tdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
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 3e0641a9..9a804a36 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 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)) );
+connect( m_debugger, TQ_SIGNAL(toggledBreakpoint(const TQString &, int)),
+ debuggerBreakpointWidget, TQ_SLOT(slotToggleBreakpoint(const TQString &, int)) );
+connect( m_debugger, TQ_SIGNAL(editedBreakpoint(const TQString &, int)),
+ debuggerBreakpointWidget, TQ_SLOT(slotEditBreakpoint(const TQString &, int)) );
+connect( m_debugger, TQ_SIGNAL(toggledBreakpointEnabled(const TQString &, int)),
+ debuggerBreakpointWidget, TQ_SLOT(slotToggleBreakpointEnabled(const TQString &, int)) );
@endcode
Then m_debugger instance can be used for example, to jump to the execution point:
@code