]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/LyXFileDialog.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / LyXFileDialog.cpp
index b9a9045cc23a5de5b8b8008c83950dfe09b4de80..5fabf915c204c357f83930394c06d6cf7205f40d 100644 (file)
@@ -50,12 +50,14 @@ LyXFileDialog::LyXFileDialog(QString const & title,
        : QFileDialog(qApp->focusWidget(), title, path)
 {
        setFilters(filters);
-       QDir dir(path);
+#if QT_VERSION < 0x040304
        // FIXME: workaround for a bug in qt which makes LyX crash
-       // with hidden paths (bug 4513). Recheck with recent Qt versions.
+       // with hidden paths (bug 4513). Fixed as of Qt 4.3.4
+       QDir dir(path);
        if (path.contains("/."))
                dir.setFilter(QDir::Hidden);
        setDirectory(dir);
+#endif
        setWindowTitle(title);
 
        QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();