diff options
Diffstat (limited to 'src/gvcore/thumbnailloadjob.cpp')
-rw-r--r-- | src/gvcore/thumbnailloadjob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/thumbnailloadjob.cpp b/src/gvcore/thumbnailloadjob.cpp index 6d1f609..345c6e1 100644 --- a/src/gvcore/thumbnailloadjob.cpp +++ b/src/gvcore/thumbnailloadjob.cpp @@ -543,7 +543,7 @@ void ThumbnailLoadJob::determineNextIcon() { mCurrentURL = mCurrentItem->url(); mCurrentURL.cleanPath(); - // Do direct stat instead of using KIO if the file is local (faster) + // Do direct stat instead of using TDEIO if the file is local (faster) if( mCurrentURL.isLocalFile() && !TDEIO::probably_slow_mounted( mCurrentURL.path())) { KDE_struct_stat buff; @@ -552,7 +552,7 @@ void ThumbnailLoadJob::determineNextIcon() { TQTimer::singleShot( 0, this, TQT_SLOT( checkThumbnail())); } } - if( mOriginalTime == 0 ) { // KIO must be used + if( mOriginalTime == 0 ) { // TDEIO must be used TDEIO::Job* job = TDEIO::stat(mCurrentURL,false); job->setWindow(TDEApplication::kApplication()->mainWidget()); LOG( "TDEIO::stat orig " << mCurrentURL.url() ); |