我使用qt文件对话框获取保存输出文件的路径,但崩溃或挂起或破坏了程序设计或 这是我的简单用法:
QString save_file = QFileDialog::getSaveFileName(this,"choose a path to save the file","",
"executable files (*.exe)");
但是我可以很正常地以相同的方式使用QFileDialog getOpenFileName:
icon_path = QFileDialog::getOpenFileName(this,"choose an icon","",
"ico and image files (*.ico *.xpm *.jpg *.jpeg *.png);;all files (*)");
我使用的是qt 4.8,无法升级当前项目 问题是在qt库中还是在我的用法中还是在什么方面?