Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
4.7.0
-
None
-
None
-
-
577229a5cb2fe0a9e0806238808ed3c9aeb3d3cc
Description
Try this example. Both the native and the non-native dialog shows up at the same time...
#include <QtGui> int main(int argc, char **argv){ QApplication app(argc, argv); QFileDialog d3; d3.selectFile("/Users/Richard/Movies/oblivion.mpeg"); d3.exec(); return app.exec(); }