summaryrefslogtreecommitdiffstats
path: root/tdeio/misc
diff options
context:
space:
mode:
Diffstat (limited to 'tdeio/misc')
-rw-r--r--tdeio/misc/kpac/proxyscout.cpp4
-rw-r--r--tdeio/misc/tdewalletd/tdewalletd.cpp4
-rw-r--r--tdeio/misc/uiserver.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/tdeio/misc/kpac/proxyscout.cpp b/tdeio/misc/kpac/proxyscout.cpp
index 1d2cf8f87..76722c8d4 100644
--- a/tdeio/misc/kpac/proxyscout.cpp
+++ b/tdeio/misc/kpac/proxyscout.cpp
@@ -34,7 +34,7 @@
namespace KPAC
{
ProxyScout::QueuedRequest::QueuedRequest( const KURL& u )
- : transaction( kapp->dcopClient()->beginTransaction() ),
+ : transaction( tdeApp->dcopClient()->beginTransaction() ),
url( u )
{
}
@@ -135,7 +135,7 @@ namespace KPAC
TQDataStream ds( data, IO_WriteOnly );
if ( success ) ds << handleRequest( ( *it ).url );
else ds << TQString( "DIRECT" );
- kapp->dcopClient()->endTransaction( ( *it ).transaction, type, data );
+ tdeApp->dcopClient()->endTransaction( ( *it ).transaction, type, data );
}
m_requestQueue.clear();
m_downloader->deleteLater();
diff --git a/tdeio/misc/tdewalletd/tdewalletd.cpp b/tdeio/misc/tdewalletd/tdewalletd.cpp
index 009ea348b..6c8f722d7 100644
--- a/tdeio/misc/tdewalletd/tdewalletd.cpp
+++ b/tdeio/misc/tdewalletd/tdewalletd.cpp
@@ -283,7 +283,7 @@ void TDEWalletD::setupDialog( TQWidget* dialog, WId wId, const TQCString& appid,
kdWarning() << "Application '" << appid << "' using tdewallet without parent window!" << endl;
// allow dialog activation even if it interrupts, better than trying hacks
// with keeping the dialog on top or on all desktops
- kapp->updateUserTimestamp();
+ tdeApp->updateUserTimestamp();
}
if( modal )
KWin::setState( dialog->winId(), NET::Modal );
@@ -301,7 +301,7 @@ void TDEWalletD::setupDialog( TQWidget* dialog, WId wId, const TQCString& appid,
void TDEWalletD::checkActiveDialog() {
if( !activeDialog || !activeDialog->isShown())
return;
- kapp->updateUserTimestamp();
+ tdeApp->updateUserTimestamp();
KWin::setState( activeDialog->winId(), NET::KeepAbove );
KWin::setOnAllDesktops( activeDialog->winId(), true );
KWin::forceActiveWindow( activeDialog->winId());
diff --git a/tdeio/misc/uiserver.cpp b/tdeio/misc/uiserver.cpp
index b675ee4de..40e26ed43 100644
--- a/tdeio/misc/uiserver.cpp
+++ b/tdeio/misc/uiserver.cpp
@@ -1037,7 +1037,7 @@ void UIServer::slotJobCanceled( ProgressItem *item ) {
void UIServer::slotQuit()
{
m_shuttingDown = true;
- kapp->quit();
+ tdeApp->quit();
}
void UIServer::slotUpdate() {
@@ -1360,7 +1360,7 @@ void UIServer::resizeEvent(TQResizeEvent* e)
bool UIServer::queryClose()
{
- if (( !m_shuttingDown ) && !kapp->sessionSaving()) {
+ if (( !m_shuttingDown ) && !tdeApp->sessionSaving()) {
hide();
return false;
}