diff options
Diffstat (limited to 'src/app/mainwindow.cpp')
-rw-r--r-- | src/app/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/mainwindow.cpp b/src/app/mainwindow.cpp index f61d799..d21a265 100644 --- a/src/app/mainwindow.cpp +++ b/src/app/mainwindow.cpp @@ -141,7 +141,7 @@ enum { StackIDBrowse, StackIDView }; static bool urlIsDirectory(TQWidget* parent, const KURL& url) { if( url.filename( false ).isEmpty()) return true; // file:/somewhere/<nothing here> - // 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( url.isLocalFile() && !TDEIO::probably_slow_mounted( url.path())) { KDE_struct_stat buff; |