CVS commit by wgreven: Don't construct a KURL from a unix path, use KURL::setPath instead. Fixes updating contents of directories containing [#?] characters. BUG:103391 M +2 -1 kdirlister.cpp 1.197 --- kdelibs/kio/kio/kdirlister.cpp #1.196:1.197 @@ -831,5 +831,6 @@ void KDirListerCache::slotFileDirty( con if ( !pendingUpdates[_file] ) { - KURL dir = KURL( _file ); + KURL dir; + dir.setPath( _file ); if ( checkUpdate( dir.url(-1) ) ) updateDirectory( dir );