diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-09-07 20:39:30 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-09-07 20:39:30 -0500 |
commit | c4284606f6b7a3dab5c38f58daea398c44b33745 (patch) | |
tree | cd1c7c832a82a667fd9ba6239a1e9b8e09288df1 /dcop | |
parent | e4f16abb29805df949498799f347874f3f67c288 (diff) | |
download | tdelibs-c4284606f6b7a3dab5c38f58daea398c44b33745.tar.gz tdelibs-c4284606f6b7a3dab5c38f58daea398c44b33745.zip |
Rename terminateKDE->terminateTDE
Diffstat (limited to 'dcop')
-rw-r--r-- | dcop/dcopserver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dcop/dcopserver.cpp b/dcop/dcopserver.cpp index 136945c1e..15066047a 100644 --- a/dcop/dcopserver.cpp +++ b/dcop/dcopserver.cpp @@ -1290,10 +1290,10 @@ void DCOPServer::removeConnection( void* data ) void DCOPServer::slotTerminate() { #ifndef NDEBUG - fprintf( stderr, "[dcopserver] slotTerminate() -> sending terminateKDE signal." ); + fprintf( stderr, "[dcopserver] slotTerminate() -> sending terminateTDE signal." ); #endif TQByteArray data; - dcopSignals->emitSignal(0L /* dcopserver */, "terminateKDE()", data, false); + dcopSignals->emitSignal(0L /* dcopserver */, "terminateTDE()", data, false); disconnect( m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTerminate()) ); connect( m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSuicide()) ); system(findDcopserverShutdown()+" --nokill"); @@ -1320,7 +1320,7 @@ void DCOPServer::slotShutdown() { shutdown = true; TQByteArray data; - dcopSignals->emitSignal(0L /* dcopserver */, "terminateKDE()", data, false); + dcopSignals->emitSignal(0L /* dcopserver */, "terminateTDE()", data, false); m_timer->start( 10000 ); // if within 10 seconds nothing happens, we'll terminate disconnect( m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTerminate()) ); connect( m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotExit()) ); |