Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 301)

Ticket Resolution Summary Owner Reporter
#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.

#140 fixed Filedialog in 4.6.1 trunk shows slashes on drive letters rudi
Description

There seems to be some confusion in 4.6.1 whether a root drive should be suffixes by a slash or not. This can cause the same drive added twice (once with and once without a slsah). See attachment. The effect does not happen in 4.5.1-GA.

#242 fixed Filter out ".." for root directories Dmitry A. Kuminov
Description

http://svn.netlabs.org/qt4/ticket/205#comment:27:

Not sure, if I should open a ticket for that but it's something we already discussed. Some (but not all (!)) file systems on OS/2 report a (hidden) ".." entry in root directories. In case of Creator this allows the user to change up to the drive list. On Windows this is not possible and I'm not 100% sure that this scenario is correctly handled by Creator. In order to achieve consistent behavior, I modified foldernavigationwidget.cpp to not allow changing to "My computer". However, I still think we should filter out ".." for root directories in the lower level file system code...

Note: See TracQuery for help on using queries.