summaryrefslogtreecommitdiffstats
path: root/knode/kncleanup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 18:26:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 18:26:41 +0900
commitaae5ebe5008a41fe4a4767092d7e17600abf6725 (patch)
tree97002e11e1564bceeda4fb4b3b04164bb9e72286 /knode/kncleanup.cpp
parent69779eb81c20b80b56ab698f44a944efd6107a74 (diff)
downloadtdepim-aae5ebe5008a41fe4a4767092d7e17600abf6725.tar.gz
tdepim-aae5ebe5008a41fe4a4767092d7e17600abf6725.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'knode/kncleanup.cpp')
-rw-r--r--knode/kncleanup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knode/kncleanup.cpp b/knode/kncleanup.cpp
index 8b2849a9..089ebfef 100644
--- a/knode/kncleanup.cpp
+++ b/knode/kncleanup.cpp
@@ -57,13 +57,13 @@ void KNCleanUp::start()
for ( TQValueList<KNArticleCollection*>::Iterator it = mColList.begin(); it != mColList.end(); ++it ) {
if ( (*it)->type() == KNCollection::CTgroup ) {
d_lg->showMessage( i18n("Deleting expired articles in <b>%1</b>").arg( (*it)->name() ) );
- kapp->processEvents();
+ tdeApp->processEvents();
expireGroup( static_cast<KNGroup*>( (*it) ) );
d_lg->doProgress();
}
else if ( (*it)->type() == KNCollection::CTfolder ) {
d_lg->showMessage( i18n("Compacting folder <b>%1</b>").arg( (*it)->name() ) );
- kapp->processEvents();
+ tdeApp->processEvents();
compactFolder( static_cast<KNFolder*>( (*it) ) );
d_lg->doProgress();
}
@@ -255,7 +255,7 @@ KNCleanUp::ProgressDialog::ProgressDialog(int steps)
p_rogress=0;
s_teps=steps;
- setCaption(kapp->makeStdCaption(i18n("Cleaning Up")));
+ setCaption(tdeApp->makeStdCaption(i18n("Cleaning Up")));
setFixedSize(w,h);
TQFrame *top=new TQFrame(this);