From 75138e84a2271f8929478853151a6ed4a73fb2cc Mon Sep 17 00:00:00 2001 From: zautrix Date: Sun, 08 Aug 2004 12:30:41 +0000 Subject: Fixed kdirwatch --- diff --git a/microkde/kio/kio/kdirwatch.cpp b/microkde/kio/kio/kdirwatch.cpp index 98d24e0..1596d1f 100644 --- a/microkde/kio/kio/kdirwatch.cpp +++ b/microkde/kio/kio/kdirwatch.cpp @@ -595,7 +595,8 @@ void KDirWatchPrivate::addEntry(KDirWatch* instance, const QString& _path, Entry* e = &(m_mapEntries[path]); if (exists) { - e->isDir = S_ISDIR(stat_buf.st_mode); + QFileInfo fi ( path ); + e->isDir = fi.isDir(); if (e->isDir && !isDir) qWarning("KDirWatch: %s is a directory. Use addDir!", path.ascii()); -- cgit v0.9.0.2