Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (199 - 201 of 301)

Ticket Owner Reporter Resolution Summary
#238 rudi fixed QFileSystemModel incorrectly sorts directories
Description

QFileSystemModel doesn't make sure, that the "." and ".." entries are reported first. So directories starting with an exclamation mark get listed before them.

#239 rudi fixed QFileSystemModel::setRootPath doesn't convert separators
Description

We are missing a check for Q_OS_OS here.

#240 rudi fixed File system view in QtCreator doesn't enter certain directories
Description

This is most likely a LIBC issue, but I'd like your comment on this. Creator uses the following code snippet:

   const QFileInfo fi = m_fileSystemModel->fileInfo(srcIndex);
   if (fi.isReadable() && fi.isExecutable())
       setCurrentDirectory(m_fileSystemModel->filePath(srcIndex));

For some strange reason, some directories on my (JFS) partition don't have any permission bits set (i.e. st_mode == S_IFDIR), which causes the above code not to work as expected.

Note: See TracQuery for help on using queries.