Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 301)

Ticket Resolution Summary Owner Reporter
#238 fixed QFileSystemModel incorrectly sorts directories rudi
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 fixed QFileSystemModel::setRootPath doesn't convert separators rudi
Description

We are missing a check for Q_OS_OS here.

#240 fixed File system view in QtCreator doesn't enter certain directories rudi
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.