Russian Qt Forum

Qt => Вопросы новичков => Тема начата: Paramon от Январь 03, 2015, 16:10



Название: Проблема с QFileDialog (Exception)
Отправлено: Paramon от Январь 03, 2015, 16:10
Код:
    QFileDialog *qOpenFile=new QFileDialog;

    QString fileName;
    fileName=qOpenFile->getOpenFileName(this,0,0,"Все файлы (*.*)");

    delete(qOpenFile);

При вызове диалога открытия файла вылазит предупреждение. Программа не падает, путь к файлу получаю.
Цитировать
Exception at 0x757c812f, code: 0x6ba: RPC server unavailable, flags=0x1 (execution cannot be continued) (first chance)

Может делаю что не так?  ???


Название: Re: Проблема с QFileDialog (Exception)
Отправлено: kambala от Январь 03, 2015, 16:16
не обращай внимание, все нормально.

и кстати лучше создавать этот диалог не через указатель в данном случае.


Название: Re: Проблема с QFileDialog (Exception)
Отправлено: Paramon от Январь 03, 2015, 16:19
Не обращать так не обращать. Спасибо.  :)

Изначально было не через указатель. Поменял, думал может в этом проблема.


Название: Re: Проблема с QFileDialog (Exception)
Отправлено: Igors от Январь 03, 2015, 17:14
Недавно тоже работал с этим классом
Цитировать
Note that the filter *.* is not portable, because the historical assumption that the file extension determines the file type is not consistent on every operating system. It is possible to have a file with no dot in its name (for example, Makefile). In a native Windows file dialog, *.* will match such files, while in other types of file dialogs it may not. So it is better to use * if you mean to select any file.

QStringList filters;
filters << "Image files (*.png *.xpm *.jpg)"
        << "Text files (*.txt)"
        << "Any files (*)";

QFileDialog dialog(this);
dialog.setNameFilters(filters);
dialog.exec();