summaryrefslogtreecommitdiffstats
path: root/kdesktop/kwebdesktop/kwebdesktop.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-14 15:08:54 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:34:30 +0900
commit834496cf73084adeb3959b6e2c11f104955bb69a (patch)
tree4e9221c9c4bcaa2c2681f3e255b0c771379c379c /kdesktop/kwebdesktop/kwebdesktop.cpp
parent1a5b54f42c0218aef7def4bc2d5cbcc0ed6cfadd (diff)
downloadtdebase-834496cf73084adeb3959b6e2c11f104955bb69a.tar.gz
tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kdesktop/kwebdesktop/kwebdesktop.cpp')
-rw-r--r--kdesktop/kwebdesktop/kwebdesktop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/kwebdesktop/kwebdesktop.cpp b/kdesktop/kwebdesktop/kwebdesktop.cpp
index 67a55192f..37358f758 100644
--- a/kdesktop/kwebdesktop/kwebdesktop.cpp
+++ b/kdesktop/kwebdesktop/kwebdesktop.cpp
@@ -79,7 +79,7 @@ void KWebDesktopRun::slotFinished( TDEIO::Job * job )
if (job->error())
{
kdDebug() << job->errorString() << endl;
- kapp->exit(1);
+ tdeApp->exit(1);
}
}
@@ -141,7 +141,7 @@ void KWebDesktop::slotCompleted()
TQPixmap snapshot = TQPixmap::grabWidget( m_part->widget() );
snapshot.save( m_imageFile, "PNG" );
// And terminate the app.
- kapp->quit();
+ tdeApp->quit();
}
KParts::ReadOnlyPart* KWebDesktop::createPart( const TQString& mimeType )