summaryrefslogtreecommitdiffstats
path: root/tdeio/tdefile/kicondialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-13 23:01:29 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:32:19 +0900
commit0b81a0c481a3a64d5449171a534bc8c91ae73181 (patch)
tree95cd236e86e934f492b4a4a1bd44bcf434a91ab2 /tdeio/tdefile/kicondialog.cpp
parent180ceca8bb26bbe97f60c99e5d172eb8ccd66e6d (diff)
downloadtdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.tar.gz
tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.zip
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeio/tdefile/kicondialog.cpp')
-rw-r--r--tdeio/tdefile/kicondialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeio/tdefile/kicondialog.cpp b/tdeio/tdefile/kicondialog.cpp
index ba54383a0..a73f34915 100644
--- a/tdeio/tdefile/kicondialog.cpp
+++ b/tdeio/tdefile/kicondialog.cpp
@@ -135,7 +135,7 @@ void TDEIconCanvas::slotLoadFiles()
TQStringList::ConstIterator end(mFiles.end());
for (it=mFiles.begin(), i=0; it!=end; ++it, i++)
{
- // Calling kapp->processEvents() makes the iconview flicker like hell
+ // Calling tdeApp->processEvents() makes the iconview flicker like hell
// (it's being repainted once for every new item), so we don't do this.
// Instead, we directly repaint the progress bar without going through
// the event-loop. We do that just once for every 10th item so that
@@ -146,7 +146,7 @@ void TDEIconCanvas::slotLoadFiles()
}
emitProgress++;
-// kapp->processEvents();
+// tdeApp->processEvents();
if ( !d->m_bLoading ) // user clicked on a button that will load another set of icons
break;
TQImage img;