It seems that there is a "similar" bug: Task ID 193483 involving hidden directories and Task ID 195192 involving always accessing network drives. Only the one with the hidden directories mentions crashes, but the code example
#include <QtGui/QtGui>
int main(int argc, char *argv[])
{
// d.setDirectory(QDir::homePath() + "/.kde/share"); // works
d.setDirectory(".foo/bar");
d.exec();
}
#include <QtGui/QtGui>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QFileDialog d;
// d.setDirectory(QDir::homePath() + "/.kde/share"); // works
d.setDirectory(".foo/bar");
d.exec();
}
To copy to clipboard, switch view to plain text mode
is essentially what I am doing in Windows. It says the hidden directories is "fixed" in 4.3.4, does anyone know if this fix works for network mounted drives in Windows as well? I dont want to roll to 4.3.4 at this point in the game unless it will fix this issue. Maybe in combination with the slow network drive access this is a problem, but I find it hard to believe I am the first person to try and setDirectory to a network drive.
Bookmarks