summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/gdbcontroller.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 19:39:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-28 16:10:53 +0900
commit07a12d6eb21cce4cd735de6b4a4a17cce152f6a8 (patch)
tree68012ffbb56cb0f0023b257591f3e2218827fda9 /languages/cpp/debugger/gdbcontroller.cpp
parentf9e07649d38f3ec8c2c599c0ba65a288e8eac5e0 (diff)
downloadtdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.tar.gz
tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/cpp/debugger/gdbcontroller.cpp')
-rw-r--r--languages/cpp/debugger/gdbcontroller.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/debugger/gdbcontroller.cpp b/languages/cpp/debugger/gdbcontroller.cpp
index 60c4366b..da53c0ec 100644
--- a/languages/cpp/debugger/gdbcontroller.cpp
+++ b/languages/cpp/debugger/gdbcontroller.cpp
@@ -984,7 +984,7 @@ void GDBController::slotStopDebugger()
start = TQTime::currentTime();
while (-1)
{
- kapp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
+ tdeApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
now = TQTime::currentTime();
if (!stateIsOn(s_dbgBusy) || start.msecsTo( now ) > 2000)
break;
@@ -1002,7 +1002,7 @@ void GDBController::slotStopDebugger()
start = TQTime::currentTime();
while (-1)
{
- kapp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
+ tdeApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
now = TQTime::currentTime();
if (!stateIsOn(s_attached) || start.msecsTo( now ) > 2000)
break;
@@ -1018,7 +1018,7 @@ void GDBController::slotStopDebugger()
start = TQTime::currentTime();
while (-1)
{
- kapp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
+ tdeApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput, 20 );
now = TQTime::currentTime();
if (stateIsOn(s_programExited) || start.msecsTo( now ) > 2000)
break;
@@ -1098,7 +1098,7 @@ void GDBController::slotRun()
if (stateIsOn(s_appNotStarted)) {
delete tty_;
- tty_ = new STTY(config_dbgTerminal_, Settings::terminalEmulatorName( *kapp->config() ));
+ tty_ = new STTY(config_dbgTerminal_, Settings::terminalEmulatorName( *tdeApp->config() ));
if (!config_dbgTerminal_)
{
connect( tty_, TQ_SIGNAL(OutOutput(const char*)), TQ_SIGNAL(ttyStdout(const char*)) );
@@ -1840,7 +1840,7 @@ int GDBController::qtVersion( ) const
void GDBController::demandAttention() const
{
- if ( TQWidget * w = kapp->mainWidget() )
+ if ( TQWidget * w = tdeApp->mainWidget() )
{
KWin::demandAttention( w->winId(), true );
}